.elementor-366 .elementor-element.elementor-element-04c7611{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* =========================================
   ACADEMIA FETAL - INICIAR SESIÓN
   EFECTOS Y ESTILOS
   ========================================= */


/* -----------------------------------------
   BENEFICIOS
   ----------------------------------------- */

.af-login-feature {
    position: relative;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
    cursor: default;
}

.af-login-feature:hover {
    transform: translateY(-8px);
}


/* Línea/efecto sutil al pasar el mouse */

.af-login-feature::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #6fd3df;
    transition: width 0.35s ease;
}

.af-login-feature:hover::after {
    width: 45px;
}


/* -----------------------------------------
   PANEL DERECHO
   ----------------------------------------- */

.af-login-right {
    position: relative;
    overflow: hidden;
    transition:
        box-shadow 0.4s ease,
        transform 0.4s ease;
}


/* Brillo muy suave */

.af-login-right::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(0, 166, 153, 0.05);
    top: -150px;
    right: -130px;
    pointer-events: none;
}


/* -----------------------------------------
   BOTÓN INICIAR SESIÓN
   ----------------------------------------- */

.af-login-button {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease !important;
}

.af-login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 137, 123, 0.25);
}


/* -----------------------------------------
   EFECTO AL HACER FOCUS EN LOS CAMPOS
   ----------------------------------------- */

.af-login-right input[type="text"],
.af-login-right input[type="email"],
.af-login-right input[type="password"] {
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.af-login-right input[type="text"]:focus,
.af-login-right input[type="email"]:focus,
.af-login-right input[type="password"]:focus {
    border-color: #00a89d !important;
    box-shadow: 0 0 0 3px rgba(0, 168, 157, 0.10);
    outline: none;
}


/* -----------------------------------------
   ENLACE ¿OLVIDÓ SU CONTRASEÑA?
   ----------------------------------------- */

.af-login-right a {
    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.af-login-right a:hover {
    color: #008f86;
}


/* -----------------------------------------
   ANIMACIÓN DE ENTRADA
   ----------------------------------------- */

.af-login-feature {
    animation: afFeatureEntrada 0.8s ease both;
}

.af-login-feature:nth-child(1) {
    animation-delay: 0.15s;
}

.af-login-feature:nth-child(2) {
    animation-delay: 0.30s;
}

.af-login-feature:nth-child(3) {
    animation-delay: 0.45s;
}

.af-login-right {
    animation: afLoginEntrada 0.8s ease both;
    animation-delay: 0.15s;
}


@keyframes afFeatureEntrada {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes afLoginEntrada {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* -----------------------------------------
   MÓVIL
   ----------------------------------------- */

@media (max-width: 767px) {

    .af-login-feature:hover {
        transform: none;
    }

    .af-login-right {
        animation-delay: 0s;
    }

    .af-login-feature {
        animation-delay: 0.1s !important;
    }

}/* End custom CSS */