.list-group-item.list-group-item-action.text-white.lead {
    background-color: #000 !important;
    color: #fff !important;
}

/* Reset y fuente */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

.login-page {
    background-image: url('/media/img/edificio.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}



/* Overlay semitransparente */
.login-page::before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.3);
    z-index:0;
}

/* Cajetín del formulario */
.login-page .card.login {
    position: relative;
    z-index:1;
    width:550px; /* Más ancho */
    max-width:90%;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    background-color: rgba(255, 255, 255, 0.55);

    animation: fadeInUp 0.6s ease-out;
}

/* Animación suave */
@keyframes fadeInUp {
    from {opacity:0; transform: translateY(30px);}
    to {opacity:1; transform: translateY(0);}
}

/* Inputs con iconos */
.login-page .input-group-text {
    background-color: #f0f0f0;
    border: none;
}

/* Botón acceso */
.login-page .btn-primary {
    background-color: #0d6efd;
    border: none;
    transition: all 0.3s ease;
}

.login-page .btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

/* Link de contraseña */
.login-page a.link-primary {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-page a.link-primary:hover {
    color: #0b5ed7;
    text-decoration: underline;
}




