/* estilos.css — estilos base del sistema */

body {
    background-color: #f3f4f6;
}

.pagina-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenedor-login {
    width: 100%;
    max-width: 380px;
    padding: 1rem;
}

.sombra-suave {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 12px;
}

.barra-lateral {
    width: 250px;
    min-height: calc(100vh - 56px);
}

.nav-link.link-dark:hover {
    background-color: #e5e7eb;
    border-radius: 6px;
}
