.elementor-290 .elementor-element.elementor-element-fe75239{--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-290 .elementor-element.elementor-element-1d05efe{--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-290 .elementor-element.elementor-element-1d05efe:not(.elementor-motion-effects-element-type-background), .elementor-290 .elementor-element.elementor-element-1d05efe > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-text );}.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-290 .elementor-element.elementor-element-12e3642{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -10px) 0px;text-align:center;}.elementor-290 .elementor-element.elementor-element-12e3642 img{width:45%;}@media(max-width:767px){.elementor-290 .elementor-element.elementor-element-fe75239{--padding-top:15px;--padding-bottom:15px;--padding-left:15px;--padding-right:15px;}.elementor-290 .elementor-element.elementor-element-1d05efe{--padding-top:30px;--padding-bottom:30px;--padding-left:15px;--padding-right:15px;}}@media(min-width:768px){.elementor-290 .elementor-element.elementor-element-fe75239{--content-width:500px;}}/* Start custom CSS for shortcode, class: .elementor-element-ddda12e *//* 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: #292929;
    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 #292929;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    background-color:#292929;
    font-family: 'Montserrat';
    border-color: #292929 !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:#292929;
    outline: none;
}

/* Placeholders */
#auth-wrapper input::placeholder {
    color: #ffffff70;
    font-family: 'Montserrat';
}

/* Botones */
#auth-wrapper button {
    margin-top: 0;
    background: #4A12CD;
    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: #FDC31E;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(243, 146, 0, 0.3);
    color: #000000;
}

#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: 20px !important;
    font-weight: 700;
    background-color: #292929 !important;
    color: #fff !important;
    border: 2px solid #292929 !important;
}

.code-digit:focus {
    border: 2px solid #ffffff50 !important;
    background-color: #292929 !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: #141414;
    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: 20px !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-1d05efe *//* Pantallas grandes */
.elementor-290 .elementor-element.elementor-element-1d05efe {
    transform: scale(1) !important; 
}

/* Tablets */
@media (max-width: 1400px) {
    .elementor-290 .elementor-element.elementor-element-1d05efe {
        transform: scale(0.85) !important;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .elementor-290 .elementor-element.elementor-element-1d05efe {
        transform: scale(0.9) !important;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-fe75239 *//* Fondo de concierto - Moving heads con rayos dinámicos */
.fondito {
    position: relative;
    overflow: hidden;
    background: #141414 !important;
}

.fondito::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(ellipse 420px 100px at var(--x1, 8%)   var(--y1, 5%),  rgba(243,146,0,0.75), transparent 50%),
        radial-gradient(ellipse 400px 95px  at var(--x2, 92%)  var(--y2, 5%),  rgba(74,18,205,0.70), transparent 50%),
        radial-gradient(ellipse 380px 90px  at var(--x3, 30%)  var(--y3, 5%),  rgba(243,146,0,0.65), transparent 50%),
        radial-gradient(ellipse 410px 98px  at var(--x4, 70%)  var(--y4, 5%),  rgba(74,18,205,0.68), transparent 50%),
        radial-gradient(ellipse 360px 85px  at var(--x5, 50%)  var(--y5, 5%),  rgba(243,146,0,0.60), transparent 50%),
        radial-gradient(ellipse 390px 92px  at var(--x6, 18%)  var(--y6, 5%),  rgba(74,18,205,0.62), transparent 50%),
        #080810;
    filter: blur(60px);
    animation:
        rayo1 7.0s ease-in-out infinite,
        rayo2 8.5s ease-in-out infinite,
        rayo3 6.5s ease-in-out infinite,
        rayo4 9.2s ease-in-out infinite,
        rayo5 7.8s ease-in-out infinite,
        rayo6 8.0s ease-in-out infinite;
}

.fondito::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 100% 30% at 50% 100%, rgba(74,18,205,0.12), transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(243,146,0,0.06), transparent 70%);
    filter: blur(40px);
    animation: ambientPulse 6s ease-in-out infinite;
}

@keyframes rayo1 {
    0%   { --x1: 5%;  --y1: 5%;  opacity: 0.4; }
    30%  { --x1: 30%; --y1: 55%; opacity: 0.9; }
    60%  { --x1: 50%; --y1: 80%; opacity: 0.7; }
    80%  { --x1: 20%; --y1: 40%; opacity: 0.5; }
    100% { --x1: 5%;  --y1: 5%;  opacity: 0.4; }
}
@keyframes rayo2 {
    0%   { --x2: 95%; --y2: 5%;  opacity: 0.45; }
    25%  { --x2: 65%; --y2: 40%; opacity: 0.85; }
    55%  { --x2: 45%; --y2: 70%; opacity: 0.95; }
    80%  { --x2: 78%; --y2: 35%; opacity: 0.55; }
    100% { --x2: 95%; --y2: 5%;  opacity: 0.45; }
}
@keyframes rayo3 {
    0%   { --x3: 28%; --y3: 5%;  opacity: 0.35; }
    35%  { --x3: 55%; --y3: 50%; opacity: 0.88; }
    65%  { --x3: 70%; --y3: 75%; opacity: 0.75; }
    85%  { --x3: 40%; --y3: 30%; opacity: 0.45; }
    100% { --x3: 28%; --y3: 5%;  opacity: 0.35; }
}
@keyframes rayo4 {
    0%   { --x4: 72%; --y4: 5%;  opacity: 0.5;  }
    20%  { --x4: 45%; --y4: 35%; opacity: 0.80; }
    50%  { --x4: 20%; --y4: 65%; opacity: 0.92; }
    75%  { --x4: 55%; --y4: 45%; opacity: 0.55; }
    100% { --x4: 72%; --y4: 5%;  opacity: 0.5;  }
}
@keyframes rayo5 {
    0%   { --x5: 50%; --y5: 5%;  opacity: 0.3;  }
    40%  { --x5: 25%; --y5: 60%; opacity: 0.85; }
    70%  { --x5: 60%; --y5: 85%; opacity: 0.70; }
    90%  { --x5: 45%; --y5: 40%; opacity: 0.4;  }
    100% { --x5: 50%; --y5: 5%;  opacity: 0.3;  }
}
@keyframes rayo6 {
    0%   { --x6: 15%; --y6: 5%;  opacity: 0.4;  }
    30%  { --x6: 40%; --y6: 45%; opacity: 0.82; }
    60%  { --x6: 80%; --y6: 70%; opacity: 0.90; }
    80%  { --x6: 30%; --y6: 55%; opacity: 0.48; }
    100% { --x6: 15%; --y6: 5%;  opacity: 0.4;  }
}
@keyframes ambientPulse {
    0%   { opacity: 0.6; }
    50%  { opacity: 1;   }
    100% { opacity: 0.6; }
}

.fondito > * {
    position: relative;
    z-index: 2;
}/* End custom CSS */