body div.contLogin {
   /*background-color:   var(--blue-tertiary-color);*/
}
button.button_login {
    background-color: var(--blue-color);
    color: white;
    font-size: 1rem;
}

button.button_login:hover {
    background-color: var(--yellow-tertiary-color-hover);
    color:black;
}
body div.contLogin{
    box-shadow: none;
}
/* Estilos para el contenedor principal */
.formContent {
    /*border-radius: 20px;*/
    padding: 20px;
    /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);*/
    width: 100%;
    /*max-width: 400px;*/
    margin: 0 auto;
    /*margin-top: 20%;*/
}

/* Estilos para el logo */
.logo-login {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

    .logo-login img {
        height: 40px;
    }


/* Estilos para los campos de entrada */
.input-field {
    position: relative;
    margin-bottom: 25px;
}

input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: all 0.3s ease;
}


/* Estilos para el botón */
.button_login {
    font-size: 1rem;
    width: 100%;
    padding: 0px 15px;
    border: none;
    border-radius: 10px;
    background: #ffd700;
    color: #333;
    font-size: 16px;
    /*    font-weight: bold;
*/ cursor: pointer;
    transition: all 0.3s ease;
}

    .button_login:hover {
        background: #ffed4a;
        transform: translateY(-2px);
    }

/* Estilos para el enlace de contraseña olvidada */
.rememberLogin {
    text-align: center;
    margin-top: 15px;
}

    .rememberLogin a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .rememberLogin a:hover {
            color: #ffd700;
        }

/* Efectos de animación para los campos */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

