.elementor-392 .elementor-element.elementor-element-b92004f{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* =========================================================
   REGÍSTRATE - DISEÑO COMPLETO
   ========================================================= */

/* CONTENEDOR PRINCIPAL */
.af-register-layout {
    display: flex !important;
    flex-direction: row !important;
    width: calc(100% - 40px) !important;
    max-width: 1100px !important;
    margin: 35px auto 70px !important;
    padding: 0 !important;

    align-items: stretch !important;
    justify-content: stretch !important;

    background: #ffffff !important;
    border-radius: 24px !important;
    overflow: hidden !important;

    box-shadow: 0 18px 55px rgba(0, 64, 90, 0.12) !important;

    position: relative !important;
}


/* =========================================================
   COLUMNA IZQUIERDA
   ========================================================= */

.af-register-layout > .af-register-left,
.af-register-left {
    flex: 0 0 48% !important;
    width: 48% !important;
    max-width: 48% !important;
    min-width: 0 !important;

    min-height: 650px !important;

    box-sizing: border-box !important;

    padding: 55px 48px !important;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(255,255,255,0.08) 0,
            rgba(255,255,255,0.08) 1px,
            transparent 2px
        ),
        linear-gradient(
            145deg,
            #075475 0%,
            #087b83 55%,
            #009b8c 100%
        ) !important;

    color: #ffffff !important;

    position: relative !important;
    overflow: hidden !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}


/* Círculo decorativo superior */
.af-register-left::before {
    content: "" !important;

    position: absolute !important;

    width: 300px !important;
    height: 300px !important;

    border: 1px solid rgba(255,255,255,0.16) !important;

    border-radius: 50% !important;

    right: -100px !important;
    top: -80px !important;

    pointer-events: none !important;
}


/* Círculos inferiores */
.af-register-left::after {
    content: "" !important;

    position: absolute !important;

    width: 430px !important;
    height: 430px !important;

    border: 1px solid rgba(255,255,255,0.10) !important;

    border-radius: 50% !important;

    right: -220px !important;
    bottom: -220px !important;

    pointer-events: none !important;
}


/* =========================================================
   CONTENIDO DE LA COLUMNA IZQUIERDA
   ========================================================= */

.af-register-left > * {
    position: relative !important;
    z-index: 2 !important;
}


/* =========================================================
   COLUMNA DERECHA
   ========================================================= */

.af-register-layout > .af-register-right,
.af-register-right {
    flex: 0 0 52% !important;
    width: 52% !important;
    max-width: 52% !important;
    min-width: 0 !important;

    box-sizing: border-box !important;

    padding: 55px 55px !important;

    background: #ffffff !important;

    position: relative !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}


/* =========================================================
   FORMULARIO
   ========================================================= */

.af-register-right input[type="text"],
.af-register-right input[type="email"],
.af-register-right input[type="password"] {
    width: 100% !important;
    box-sizing: border-box !important;

    min-height: 48px !important;

    border: 1px solid #d8e3ea !important;
    border-radius: 10px !important;

    padding: 0 15px !important;

    background: #ffffff !important;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease !important;
}


/* Focus */
.af-register-right input[type="text"]:focus,
.af-register-right input[type="email"]:focus,
.af-register-right input[type="password"]:focus {
    border-color: #009f91 !important;

    box-shadow:
        0 0 0 3px rgba(0,159,145,0.10) !important;

    outline: none !important;
}


/* =========================================================
   BOTÓN CREAR CUENTA
   ========================================================= */

.af-register-right button,
.af-register-right input[type="submit"],
.af-register-right .elementor-button {
    border: none !important;

    border-radius: 10px !important;

    min-height: 50px !important;

    background:
        linear-gradient(
            135deg,
            #009f91,
            #008b84
        ) !important;

    color: #ffffff !important;

    font-weight: 700 !important;

    cursor: pointer !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease !important;
}


/* Hover botón */
.af-register-right button:hover,
.af-register-right input[type="submit"]:hover,
.af-register-right .elementor-button:hover {
    transform: translateY(-2px) !important;

    box-shadow:
        0 10px 25px rgba(0,145,135,0.25) !important;

    filter: brightness(1.04) !important;
}


/* =========================================================
   BENEFICIOS DE LA IZQUIERDA
   ========================================================= */

.af-register-left .af-login-feature,
.af-register-left .af-register-feature {
    position: relative !important;
    z-index: 3 !important;

    transition:
        transform .3s ease,
        opacity .3s ease !important;
}


.af-register-left .af-login-feature:hover,
.af-register-left .af-register-feature:hover {
    transform: translateX(5px) !important;
}


/* =========================================================
   ANIMACIONES DE ENTRADA
   ========================================================= */

.af-register-left {
    animation: afRegisterLeftIn .8s cubic-bezier(.22,1,.36,1) both !important;
}


.af-register-right {
    animation: afRegisterRightIn .8s cubic-bezier(.22,1,.36,1) .12s both !important;
}


@keyframes afRegisterLeftIn {

    from {
        opacity: 0;
        transform: translateX(-35px);
    }

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

}


@keyframes afRegisterRightIn {

    from {
        opacity: 0;
        transform: translateX(35px);
    }

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

}


/* =========================================================
   EFECTO SUAVE EN LOS ELEMENTOS DE BENEFICIO
   ========================================================= */

.af-register-left .af-register-feature {
    animation: afFeatureIn .7s ease both;
}


.af-register-left .af-register-feature:nth-child(2) {
    animation-delay: .15s;
}


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


@keyframes afFeatureIn {

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

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

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .af-register-layout {
        width: calc(100% - 30px) !important;
        max-width: 760px !important;
    }

    .af-register-left {
        flex-basis: 46% !important;
        width: 46% !important;
        max-width: 46% !important;

        padding: 45px 32px !important;
    }

    .af-register-right {
        flex-basis: 54% !important;
        width: 54% !important;
        max-width: 54% !important;

        padding: 45px 32px !important;
    }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 767px) {

    .af-register-layout {
        display: flex !important;
        flex-direction: column !important;

        width: calc(100% - 24px) !important;

        max-width: 520px !important;

        margin: 20px auto 45px !important;

        border-radius: 20px !important;

        overflow: hidden !important;
    }


    .af-register-layout > .af-register-left,
    .af-register-left {

        flex: 0 0 auto !important;

        width: 100% !important;
        max-width: 100% !important;

        min-height: auto !important;

        padding: 45px 28px !important;
    }


    .af-register-layout > .af-register-right,
    .af-register-right {

        flex: 0 0 auto !important;

        width: 100% !important;
        max-width: 100% !important;

        padding: 40px 28px !important;
    }


    .af-register-left::before {
        width: 220px !important;
        height: 220px !important;

        right: -90px !important;
        top: -70px !important;
    }


    .af-register-left::after {
        width: 300px !important;
        height: 300px !important;

        right: -160px !important;
        bottom: -170px !important;
    }

}


/* =========================================================
   MÓVIL PEQUEÑO
   ========================================================= */

@media (max-width: 480px) {

    .af-register-layout {
        width: calc(100% - 16px) !important;
        border-radius: 16px !important;
    }

    .af-register-left {
        padding: 35px 22px !important;
    }

    .af-register-right {
        padding: 35px 22px !important;
    }

}/* End custom CSS */