.elementor-776 .elementor-element.elementor-element-c7d00c1{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-776 .elementor-element.elementor-element-3a4d791{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--border-radius:12px 12px 12px 12px;box-shadow:0px 0px 5px 0px rgba(255, 255, 255, 0.08);--padding-top:30px;--padding-bottom:20px;--padding-left:30px;--padding-right:30px;}.elementor-776 .elementor-element.elementor-element-3a4d791:not(.elementor-motion-effects-element-type-background), .elementor-776 .elementor-element.elementor-element-3a4d791 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0F1521;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-776 .elementor-element.elementor-element-9e7c6e6{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -10px) 0px;text-align:center;}.elementor-776 .elementor-element.elementor-element-9e7c6e6 img{width:50%;}@media(max-width:767px){.elementor-776 .elementor-element.elementor-element-c7d00c1{--padding-top:15px;--padding-bottom:15px;--padding-left:15px;--padding-right:15px;}.elementor-776 .elementor-element.elementor-element-3a4d791{--padding-top:30px;--padding-bottom:30px;--padding-left:15px;--padding-right:15px;}}@media(min-width:768px){.elementor-776 .elementor-element.elementor-element-c7d00c1{--content-width:500px;}}/* Start custom CSS for shortcode, class: .elementor-element-0e94c23 *//* Modal principal */
.auth-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    font-family: 'Montserrat';
}

.auth-modal-content {
    background: #151C29;
    border: 2px solid #ffffff20;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: modalFadeIn 0.3s ease;
    font-family: 'Montserrat';
}

.auth-modal-content p {
    color: #fff !important;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Montserrat';
}

/* Contenedor principal */
#auth-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 0rem;
    background: #ffffff00;
    border-radius: 12px;
    font-family: 'Montserrat';
}

#auth-wrapper h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Montserrat';
}

#auth-wrapper p {
    text-align: center;
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    font-family: 'Montserrat';
}

#auth-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Montserrat';
}

/* Inputs */
#auth-wrapper input[type="text"],
#auth-wrapper input[type="email"],
#auth-wrapper input[type="password"] {
    padding: 12px 15px;
    border: 2px solid #151C29;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    background-color:#151C29;
    font-family: 'Montserrat';
    border-color: #151C29 !important;
    color: #fff;
}

#auth-wrapper input[type="text"]:focus,
#auth-wrapper input[type="email"]:focus,
#auth-wrapper input[type="password"]:focus {
    border: 2px solid #ffffff50 !important;
    background-color:#151C29;
    outline: none;
}

/* Placeholders */
#auth-wrapper input::placeholder {
    color: #ffffff70;
    font-family: 'Montserrat';
}

/* Botones */
#auth-wrapper button {
    margin-top: 0;
    background: #f39200;
    color: white;
    border: none;
    padding: 12px !important;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    font-family: 'Montserrat';
    font-weight: 700;
    width: 100%;
}

#auth-wrapper button:hover {
    background: #f39200;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(243, 146, 0, 0.3);
}

#auth-wrapper button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(243, 146, 0, 0.3);
}

/* Enlaces */
#auth-wrapper a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s;
    display: inline-block;
    margin-top: 0px;
    text-align: left;
    font-family: 'Montserrat';
}

#auth-wrapper a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Errores de login */
.login-error {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.login-error:not(:empty) {
    display: block;
}

/* Checkbox */
#auth-wrapper label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    margin: 5px 0;
}

#auth-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #5a9818;
}

/* Formulario de recuperación */
#recover-form p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.5;
    font-family: 'Montserrat';
}

#reset-password-form .code-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 5px;
}

.code-digit {
    width: 60px !important;
    height: 60px;
    text-align: center;
    font-size: 45px !important;
    font-weight: 100;
    background-color: #151C29 !important;
    color: #fff !important;
    border: 2px solid #151C29 !important;
}

.code-digit:focus {
    border: 2px solid #ffffff50 !important;
    background-color: #151C29 !important;
    outline: none;
}

#reset-password-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#reset-password-form .new-password-section {
    margin-top: 15px;
    position: relative;
}

#reset-password-form .new-password-section::before {
    content: '';
    display: block;
    height: 1px;
    background: #00091A;
    margin-bottom: 20px;
}

#reset-password-form .new-password-section label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 500;
}

/* NUEVOS ESTILOS PARA CAMPOS DE CONTRASEÑA CON OJITO */

/* Contenedor del campo de contraseña */
.password-field {
    position: relative;
    display: inline-block;
    width: 100%;
}

.password-field input {
    width: 100%;
    padding-right: 45px !important;
}

/* Botón para mostrar/ocultar contraseña */
.password-toggle {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ffffff70;
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: #fff;
}

.password-toggle i {
    font-size: 16px;
}

/* Overlays de carga */
.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f1521;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: inherit;
}

.overlay-content {
    text-align: center;
    padding: 20px;
    color: #fff;
}

.overlay-content p {
    color: #fff !important;
    font-family: 'Montserrat';
    font-size: 16px;
    margin-top: 15px;
}

/* Spinner de carga */
.loading-spinner {
    border: 4px solid #ffffff20;
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 0 auto 15px;
}

/* Botón del modal */
.auth-modal button {
    background: #1C216D;
    color: white;
    border: none;
    padding: 15px 30px !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(28, 33, 109, 0.3);
    font-family: 'Montserrat';
    font-size: 16px;
    cursor: pointer;
}

.auth-modal button:hover {
    background: #2C34AF;
    transform: translateY(-2px);
}

/* Posicionamiento para overlays */
#login-form, #register-form, #recover-form {
    position: relative;
}

/* ==================== ESTILOS PARA CLOUDFLARE TURNSTILE ==================== */
.cf-turnstile {
    margin: 20px 0 0 0 !important;
}

/* ANIMACIONES */
@keyframes modalFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.6s;
}

/* Efectos de transición entre formularios */
#login-form, #register-form, #recover-form {
    transition: all 0.4s ease;
}

/* Estilos para el formulario activo */
#login-form:not([style*="display: none"]),
#register-form:not([style*="display: none"]),
#recover-form:not([style*="display: none"]) {
    animation: formFadeIn 0.5s ease;
}

@keyframes formFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    #auth-wrapper {
        padding: 0rem;
        margin: 0 10px;
    }
    
    #auth-wrapper h3 {
        font-size: 1.5rem;
    }
    
    #auth-wrapper input[type="text"],
    #auth-wrapper input[type="email"],
    #auth-wrapper input[type="password"] {
        padding: 10px 12px;
    }
    
    .code-digit {
        width: 45px !important;
        height: 45px;
        font-size: 35px !important;
    }
    
    .password-toggle {
        right: 12px;
    }
    
    .password-toggle i {
        font-size: 14px;
    }
    
    .auth-modal-content {
        padding: 1.5rem;
        margin: 0 15px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-3a4d791 *//* Pantallas grandes */
.elementor-776 .elementor-element.elementor-element-3a4d791 {
    transform: scale(1) !important; 
}

/* Tablets */
@media (max-width: 1400px) {
    .elementor-776 .elementor-element.elementor-element-3a4d791 {
        transform: scale(0.85) !important;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .elementor-776 .elementor-element.elementor-element-3a4d791 {
        transform: scale(0.9) !important;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-c7d00c1 *//* Fondo de concierto - Moving heads con rayos dinámicos */
.fondito {
    position: relative;
    overflow: hidden;
    background: #0a0a0a !important;
}

.fondito::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    background: 
        /* Rayo 1 - Azul oscuro */
        radial-gradient(ellipse 500px 120px at var(--x1, 10%) var(--y1, 30%), rgba(30, 100, 200, 0.7), transparent 45%),
        /* Rayo 2 - Azul claro */
        radial-gradient(ellipse 550px 130px at var(--x2, 85%) var(--y2, 20%), rgba(50, 150, 255, 0.65), transparent 48%),
        /* Rayo 3 - Púrpura azul */
        radial-gradient(ellipse 480px 110px at var(--x3, 50%) var(--y3, 95%), rgba(80, 60, 200, 0.6), transparent 46%),
        /* Rayo 4 - Cyan */
        radial-gradient(ellipse 520px 125px at var(--x4, 15%) var(--y4, 75%), rgba(40, 140, 200, 0.65), transparent 47%),
        /* Fondo */
        #0a0a0a;
    filter: blur(80px);
    animation: 
        rayMove1 7s ease-in-out infinite,
        rayMove2 8.5s ease-in-out infinite,
        rayMove3 9s ease-in-out infinite,
        rayMove4 7.8s ease-in-out infinite;
}

.fondito::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(20, 60, 140, 0.25), transparent 70%);
    filter: blur(120px);
    animation: ambientGlow 8s ease-in-out infinite;
}

/* Movimiento Rayo 1 - De izq a centro */
@keyframes rayMove1 {
    0% {
        --x1: 5%;
        --y1: 20%;
        opacity: 0.3;
    }
    25% {
        --x1: 25%;
        --y1: 35%;
        opacity: 0.7;
    }
    50% {
        --x1: 40%;
        --y1: 50%;
        opacity: 0.95;
    }
    75% {
        --x1: 20%;
        --y1: 40%;
        opacity: 0.5;
    }
    100% {
        --x1: 5%;
        --y1: 20%;
        opacity: 0.3;
    }
}

/* Movimiento Rayo 2 - De der arriba a centro */
@keyframes rayMove2 {
    0% {
        --x2: 95%;
        --y2: 10%;
        opacity: 0.35;
    }
    25% {
        --x2: 70%;
        --y2: 25%;
        opacity: 0.75;
    }
    50% {
        --x2: 50%;
        --y2: 45%;
        opacity: 0.9;
    }
    75% {
        --x2: 75%;
        --y2: 30%;
        opacity: 0.5;
    }
    100% {
        --x2: 95%;
        --y2: 10%;
        opacity: 0.35;
    }
}

/* Movimiento Rayo 3 - De abajo centro a arriba */
@keyframes rayMove3 {
    0% {
        --x3: 50%;
        --y3: 100%;
        opacity: 0.3;
    }
    25% {
        --x3: 45%;
        --y3: 75%;
        opacity: 0.8;
    }
    50% {
        --x3: 50%;
        --y3: 50%;
        opacity: 0.95;
    }
    75% {
        --x3: 55%;
        --y3: 70%;
        opacity: 0.55;
    }
    100% {
        --x3: 50%;
        --y3: 100%;
        opacity: 0.3;
    }
}

/* Movimiento Rayo 4 - De izq abajo a derecha */
@keyframes rayMove4 {
    0% {
        --x4: 10%;
        --y4: 85%;
        opacity: 0.4;
    }
    25% {
        --x4: 35%;
        --y4: 60%;
        opacity: 0.85;
    }
    50% {
        --x4: 60%;
        --y4: 40%;
        opacity: 0.88;
    }
    75% {
        --x4: 40%;
        --y4: 65%;
        opacity: 0.5;
    }
    100% {
        --x4: 10%;
        --y4: 85%;
        opacity: 0.4;
    }
}

@keyframes ambientGlow {
    0% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.35;
    }
    100% {
        opacity: 0.15;
    }
}

.fondito > * {
    position: relative;
    z-index: 2;
}/* End custom CSS */