/* PROTECCIÓN ANTI-COPIA */
* { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; }
input, textarea { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }
img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
/**
 * iLuminaT1scode.com - Modern Login System 2026
 * Diseño: Cyber Pink Hacker Aesthetic
 * Autor: Claude para iLuminaT1sCode
 * PROTEGIDO - NO COPIAR
 * VERSIÓN: 2.0 - Fix iPhone 15 Pro Max + Chrome
 */

/* ═══════════════════════════════════════════════════
   🛡️ PROTECCIÓN ANTI-COPIA
   ═══════════════════════════════════════════════════ */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Permitir selección solo en inputs */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Deshabilitar arrastre de imágenes */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

:root {
    --neon-pink: #ff00ff;
    --neon-pink-bright: #ff44ff;
    --neon-cyan: #00ffff;
    --neon-green: #00ff88;
    --neon-yellow: #ccff00;
    --dark-bg: #0a0008;
    --dark-card: rgba(10, 0, 20, 0.95);
    --glass-border: rgba(255, 0, 255, 0.2);
}

*:not(input):not(textarea) {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: #fff;
    -webkit-tap-highlight-color: transparent;
    cursor: none;
}

/* ============================================
   CUSTOM CURSOR - APPLE STYLE
============================================ */
.cursor {
    width: 28px;
    height: 34px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
    filter: drop-shadow(0 0 8px var(--neon-pink)) drop-shadow(0 0 15px var(--neon-pink));
    will-change: transform, left, top;
}

.cursor svg {
    width: 100%;
    height: 100%;
    fill: var(--neon-pink);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.cursor.hover svg {
    fill: var(--neon-cyan);
    transform: scale(1.3) rotate(-10deg);
}

.cursor.hover {
    filter: drop-shadow(0 0 12px var(--neon-cyan)) drop-shadow(0 0 25px var(--neon-cyan));
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    will-change: left, top;
}

@media (max-width: 768px) {
    .cursor, .cursor-dot { display: none; }
    html, body { cursor: auto; }
}

/* ============================================
   VIDEO BACKGROUND
============================================ */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 20, 0.7);
    z-index: 1;
}

/* ============================================
   AURORA BACKGROUND (fallback)
   🔧 OPTIMIZADO PARA CHROME
============================================ */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--dark-bg);
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.aurora {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(255, 0, 128, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 70%, rgba(0, 255, 136, 0.12) 0%, transparent 45%);
    animation: auroraMove 15s ease-in-out infinite;
    filter: blur(60px);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes auroraMove {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
    25% { transform: translate3d(5%, 5%, 0) rotate(5deg) scale(1.05); }
    50% { transform: translate3d(-5%, 10%, 0) rotate(-5deg) scale(1.1); }
    75% { transform: translate3d(10%, -5%, 0) rotate(3deg) scale(1.02); }
}

.aurora-2 {
    animation-delay: -7s;
    animation-duration: 20s;
    opacity: 0.6;
}

/* Grid overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: 
        linear-gradient(90deg, rgba(255, 0, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    will-change: transform;
    transform: translateZ(0);
}

/* Scanlines */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.08) 2px,
        rgba(0, 0, 0, 0.08) 4px
    );
    will-change: transform;
    transform: translateZ(0);
}

/* Particles - 🔥 OPTIMIZADO - MÁS RÁPIDAS Y CONSTANTES */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--neon-pink);
    animation: floatUp 6s infinite linear;
    opacity: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.particle:nth-child(odd) { background: var(--neon-cyan); box-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan); }
.particle:nth-child(3n) { background: var(--neon-green); box-shadow: 0 0 15px var(--neon-green), 0 0 30px var(--neon-green); }
.particle:nth-child(4n) { width: 2px; height: 2px; animation-duration: 5s; }
.particle:nth-child(5n) { width: 5px; height: 5px; animation-duration: 7s; }
.particle:nth-child(6n) { width: 3px; height: 3px; animation-duration: 4s; }

.particle:nth-child(1) { left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { left: 12%; animation-delay: 0.3s; }
.particle:nth-child(3) { left: 20%; animation-delay: 0.6s; }
.particle:nth-child(4) { left: 28%; animation-delay: 0.9s; }
.particle:nth-child(5) { left: 35%; animation-delay: 1.2s; }
.particle:nth-child(6) { left: 42%; animation-delay: 0.15s; }
.particle:nth-child(7) { left: 50%; animation-delay: 0.45s; }
.particle:nth-child(8) { left: 58%; animation-delay: 0.75s; }
.particle:nth-child(9) { left: 65%; animation-delay: 1.05s; }
.particle:nth-child(10) { left: 72%; animation-delay: 1.35s; }
.particle:nth-child(11) { left: 80%; animation-delay: 0.1s; }
.particle:nth-child(12) { left: 88%; animation-delay: 0.4s; }
.particle:nth-child(13) { left: 95%; animation-delay: 0.7s; }

@keyframes floatUp {
    0% { transform: translate3d(0, 100vh, 0) scale(0.5); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 0.8; }
    100% { transform: translate3d(0, -20vh, 0) scale(1.2); opacity: 0; }
}

/* Preferencia de movimiento reducido (accesibilidad) */
@media (prefers-reduced-motion: reduce) {
    .aurora, .aurora-2, .particle {
        animation: none !important;
    }
    .modal-card::before, .modal-card::after {
        animation: none !important;
    }
}

/* ============================================
   MAIN PAGE
============================================ */
.main-page {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
    will-change: transform, opacity;
}

.logo-icon {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.5);
    animation: sparkle 2s ease-in-out infinite, float 3s ease-in-out infinite;
    will-change: transform, opacity;
}

.logo-icon:nth-child(1) { animation-delay: 0s, 0s; }
.logo-icon:nth-child(3) { animation-delay: 1s, 1.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 5px transparent); }
    50% { opacity: 1; transform: scale(1.4) rotate(180deg); fill: var(--neon-pink); filter: drop-shadow(0 0 15px var(--neon-pink)); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    font-family: 'Audiowide', cursive;
    font-size: clamp(26px, 6vw, 42px);
    background: linear-gradient(90deg, #fff, #ffccff, #ff88ff, #ffccff, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographic 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.4));
}

@keyframes holographic {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Brand Name */
.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 12vw, 85px);
    font-weight: 900;
    letter-spacing: clamp(2px, 1vw, 10px);
    margin: 15px 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.brand-name span {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green), var(--neon-yellow));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s linear infinite;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tagline */
.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.tagline-code {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(14px, 4vw, 22px);
    letter-spacing: 6px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-pink-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.8));
    position: relative;
}

.tagline-code::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmerText 3s infinite;
}

@keyframes shimmerText {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.tagline-rotating {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(14px, 4vw, 22px);
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    min-width: 200px;
    text-align: left;
    position: relative;
    height: 28px;
    overflow: hidden;
}

.rotating-text {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.rotating-text.active {
    opacity: 1;
    transform: translateY(0);
}

.cursor-blink {
    display: inline-block;
    width: 3px;
    height: 24px;
    background: var(--neon-pink);
    margin-left: 5px;
    animation: blink 1s step-end infinite;
    box-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Buttons */
.buttons-container {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, box-shadow;
}

.btn-login {
    background: linear-gradient(135deg, #ff00ff, #ff0080);
    color: #fff;
    border: none;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.4);
}

.btn-login:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.6);
}

.btn-renta {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.btn-renta:hover {
    background: var(--neon-green);
    color: #000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.5);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Social Icons */
.social-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    will-change: transform;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 0, 255, 0.3);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.5);
}

.social-icon:hover svg {
    fill: #fff;
}

/* ============================================
   MODAL OVERLAY
============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* ============================================
   MODAL CARD - EFECTO CONVEXO FINAL APROBADO
   Esquinas redondeadas + Borde delgado + Convexo alto
============================================ */
.modal-card {
    /* 🔥 ESQUINAS MÁS REDONDEADAS */
    border-radius: 35px;
    padding: 28px 28px;
    width: 100%;
    max-width: 400px;
    position: relative;
    animation: modalEnter 0.4s ease-out;
    
    /* 🔥 EFECTO CONVEXO ALTO: Bordes muy oscuros, centro iluminado */
    background: 
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.7) 5%,
            rgba(15, 0, 30, 0.8) 12%,
            rgba(30, 3, 55, 0.98) 25%,
            rgba(45, 8, 75, 0.99) 50%,
            rgba(30, 3, 55, 0.98) 75%,
            rgba(15, 0, 30, 0.8) 88%,
            rgba(0, 0, 0, 0.7) 95%,
            rgba(0, 0, 0, 0.95) 100%
        );
    
    /* 🔥 SOMBRAS CONVEXAS INTENSAS */
    box-shadow: 
        /* Glow neón suave detrás */
        0 0 50px rgba(255, 0, 255, 0.2),
        0 0 100px rgba(255, 0, 255, 0.1),
        /* Sombras negras laterales MUY fuertes */
        inset 40px 0 50px -20px rgba(0, 0, 0, 1),
        inset -40px 0 50px -20px rgba(0, 0, 0, 1),
        /* Sombra inferior */
        inset 0 -20px 35px -15px rgba(0, 0, 0, 0.7),
        /* Brillo superior central sutil */
        inset 0 8px 20px -10px rgba(255, 255, 255, 0.06),
        /* Elevación */
        0 30px 60px -15px rgba(0, 0, 0, 0.8);
    overflow: visible;
}

/* 🔥 BORDE NEÓN SÚPER DELGADO (1px) */
.modal-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 36px;
    padding: 1px;
    background: conic-gradient(
        from var(--neon-angle, 0deg),
        #ff00ff,
        #00ffff,
        #00ff88,
        #ff00ff,
        #00ffff,
        #ff00ff
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: neonRotate 4s linear infinite;
    z-index: -1;
    opacity: 0.8;
}

/* Glow detrás del borde - más sutil */
.modal-card::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 40px;
    background: conic-gradient(
        from var(--neon-angle, 0deg),
        #ff00ff,
        #00ffff,
        #00ff88,
        #ff00ff,
        #00ffff,
        #ff00ff
    );
    animation: neonRotate 4s linear infinite;
    z-index: -2;
    filter: blur(15px);
    opacity: 0.25;
}

/* 🔥 HIGHLIGHT SUPERIOR - Simula reflejo en superficie curva */
.modal-highlight {
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 50%;
    background: 
        radial-gradient(ellipse at 50% 0%, 
            rgba(255,255,255,0.08) 0%,
            rgba(255,255,255,0.03) 30%,
            transparent 60%
        );
    pointer-events: none;
    border-radius: 35px 35px 50% 50%;
    z-index: 1;
}

@property --neon-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes neonRotate {
    to {
        --neon-angle: 360deg;
    }
}

/* Fallback para navegadores sin @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
    .modal-card::before {
        background: linear-gradient(45deg, #ff00ff, #00ffff, #00ff88, #ff00ff);
        background-size: 400% 400%;
        animation: borderGlow 4s linear infinite;
    }
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 🔥 ANIMACIÓN DE ENTRADA SIMPLE - Sin efecto feo de colores */
@keyframes modalEnter {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal Glow Effects - 🔧 OPTIMIZADO */
.modal-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    z-index: 0;
    will-change: transform;
    transform: translateZ(0);
}

.modal-glow-1 {
    top: -40px;
    right: -40px;
    background: var(--neon-pink);
    animation: glowFloat 4s ease-in-out infinite;
}

.modal-glow-2 {
    bottom: -40px;
    left: -40px;
    background: var(--neon-cyan);
    animation: glowFloat 4s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(15px, 15px, 0); }
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 0, 255, 0.3);
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
    color: #fff;
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.modal-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(255, 0, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: iconFloat 3s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
    position: relative;
    will-change: transform, box-shadow;
}

.modal-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid transparent;
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: iconOrbit 2s linear infinite;
    will-change: transform;
}

@keyframes iconOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.modal-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--neon-pink);
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 0, 255, 0); }
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #ff88ff, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    animation: titleShimmer 3s linear infinite;
}

@keyframes titleShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.modal-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green), var(--neon-cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: brandShimmer 3s linear infinite;
}

.modal-title-brand {
    font-size: 24px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green), var(--neon-yellow), var(--neon-cyan));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: brandShimmer 2.5s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.modal-subtitle-2fa {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 5px;
}

@keyframes brandShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ============================================
   FORM ELEMENTS
   🔧 FIX IPHONE 15 PRO MAX
============================================ */
.form-group {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

/* 🔧 FIX IPHONE 15 PRO MAX - INPUTS DESCUADRADOS */
.form-input {
    width: 100%;
    padding: 14px 45px 14px 16px;
    background: rgba(255, 0, 255, 0.05);
    border: 2px solid rgba(255, 0, 255, 0.2);
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px; /* 🔧 Mínimo 16px para evitar zoom en iOS */
    color: #fff;
    outline: none;
    transition: all 0.4s ease;
    /* 🔧 FIX IPHONE */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    margin: 0;
    line-height: normal;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    transform: scale(1.02);
}

.form-input.error {
    border-color: #ff4444;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}

.input-icon:hover svg {
    fill: var(--neon-pink);
    filter: drop-shadow(0 0 5px var(--neon-pink));
}

.form-input:focus + .input-icon svg {
    fill: var(--neon-pink);
    filter: drop-shadow(0 0 5px var(--neon-pink));
}

/* Error message */
.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 8px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.error-message.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Forgot Link */
.forgot-link {
    display: block;
    text-align: right;
    color: var(--neon-cyan);
    font-size: 12px;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: linear-gradient(135deg, #ff00ff, #ff0080);
    border: none;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
    /* 🔧 FIX IPHONE */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn-submit svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.btn-submit:hover, .btn-submit:active {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.6);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Loading spinner */
.btn-submit.loading {
    pointer-events: none;
}

.btn-submit.loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal Footer */
.modal-footer {
    text-align: center;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 0, 255, 0.1);
    position: relative;
    z-index: 1;
}

.modal-footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.modal-footer a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-footer a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

/* ============================================
   2FA MODAL
============================================ */
.modal-2fa {
    display: none;
}

.modal-2fa.active {
    display: block;
}

.modal-icon-2fa {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 136, 0.1));
    border-color: rgba(0, 255, 255, 0.4);
}

.modal-icon-2fa::before {
    border-top-color: var(--neon-green);
}

.modal-icon-2fa svg {
    fill: var(--neon-cyan);
}

/* 🔧 FIX IPHONE 15 PRO MAX - OTP INPUTS */
.otp-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.otp-input {
    width: 46px;
    height: 54px;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-align: center;
    outline: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* 🔧 FIX IPHONE */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 54px;
}

.otp-input:focus {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.05);
}

.otp-input:not(:placeholder-shown) {
    background: rgba(0, 255, 255, 0.12);
}

.otp-input.error {
    border-color: #ff4444;
    animation: shake 0.5s ease;
}

.timer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 25px;
    font-size: 12px;
    color: var(--neon-green);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.timer-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--neon-green);
    animation: timerSpin 2s linear infinite;
}

.timer-badge.expired {
    color: #ff4444;
    border-color: rgba(255, 68, 68, 0.25);
    background: rgba(255, 68, 68, 0.1);
}

.timer-badge.expired svg {
    fill: #ff4444;
    animation: none;
}

@keyframes timerSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.resend-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.resend-link a {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.resend-link a:hover {
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.resend-link a.disabled {
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.auto-verify-text {
    text-align: center;
    color: rgba(0, 255, 136, 0.6);
    font-size: 12px;
    margin-top: 15px;
    font-style: italic;
}

/* ============================================
   🔥 POPUP DE ERROR - COMPACTO Y ELEGANTE
============================================ */
.error-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.error-popup.active {
    display: flex;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Base - Rosa/Fucsia por defecto */
.error-popup-content {
    background: linear-gradient(145deg, rgba(70, 0, 55, 0.97), rgba(45, 0, 35, 0.98));
    border: 1px solid rgba(255, 0, 255, 0.6);
    border-radius: 20px;
    padding: 20px 25px;
    text-align: center;
    max-width: 320px;
    width: 100%;
    animation: popupEnter 0.3s ease-out;
    position: relative;
    box-shadow: 
        0 0 40px rgba(255, 0, 255, 0.3),
        0 15px 40px -10px rgba(0, 0, 0, 0.6);
}

@keyframes popupEnter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.error-popup-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.25), rgba(255, 0, 128, 0.2));
    border: 2px solid rgba(255, 0, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.error-popup-icon svg {
    width: 24px;
    height: 24px;
    fill: #ff00ff;
    filter: drop-shadow(0 0 5px #ff00ff);
}

.error-popup-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-popup-status {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 0, 255, 0.25);
    border: 1px solid rgba(255, 0, 255, 0.7);
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-popup-text {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* 🔥 BOTONES EN UNA LÍNEA - COLORES VIVOS */
.error-popup-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.error-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    max-width: 130px;
}

.error-popup-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.error-popup-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #20BA5C);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.error-popup-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.error-popup-btn-telegram {
    background: linear-gradient(135deg, #00B2FF, #0088cc);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.error-popup-btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

.error-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.error-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   TIPOS DE ERROR - DEGRADADOS POR TIPO
============================================ */

/* Warning - Amarillo/Dorado (Contraseña incorrecta) */
.error-popup[data-type="warning"] .error-popup-content {
    background: linear-gradient(145deg, rgba(70, 55, 0, 0.97), rgba(45, 35, 0, 0.98));
    border-color: rgba(255, 200, 0, 0.6);
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.25), 0 15px 40px -10px rgba(0, 0, 0, 0.6);
}
.error-popup[data-type="warning"] .error-popup-icon {
    background: rgba(255, 200, 0, 0.25);
    border-color: rgba(255, 200, 0, 0.7);
}
.error-popup[data-type="warning"] .error-popup-icon svg {
    fill: #ffcc00;
    filter: drop-shadow(0 0 8px #ffcc00);
}
.error-popup[data-type="warning"] .error-popup-status {
    background: rgba(255, 200, 0, 0.25);
    border-color: rgba(255, 200, 0, 0.7);
    color: #ffffff;
}

/* Not Found - Azul (Cuenta no existe) */
.error-popup[data-type="notfound"] .error-popup-content {
    background: linear-gradient(145deg, rgba(0, 45, 90, 0.97), rgba(0, 25, 60, 0.98));
    border-color: rgba(0, 170, 255, 0.6);
    box-shadow: 0 0 40px rgba(0, 170, 255, 0.25), 0 15px 40px -10px rgba(0, 0, 0, 0.6);
}
.error-popup[data-type="notfound"] .error-popup-icon {
    background: rgba(0, 170, 255, 0.25);
    border-color: rgba(0, 170, 255, 0.7);
}
.error-popup[data-type="notfound"] .error-popup-icon svg {
    fill: #00aaff;
    filter: drop-shadow(0 0 8px #00aaff);
}
.error-popup[data-type="notfound"] .error-popup-status {
    background: rgba(0, 170, 255, 0.25);
    border-color: rgba(0, 170, 255, 0.7);
    color: #ffffff;
}

/* Blocked - Rojo (Cuenta bloqueada) */
.error-popup[data-type="blocked"] .error-popup-content {
    background: linear-gradient(145deg, rgba(70, 0, 0, 0.97), rgba(45, 0, 0, 0.98));
    border-color: rgba(255, 68, 68, 0.6);
    box-shadow: 0 0 40px rgba(255, 68, 68, 0.25), 0 15px 40px -10px rgba(0, 0, 0, 0.6);
}
.error-popup[data-type="blocked"] .error-popup-icon {
    background: rgba(255, 68, 68, 0.25);
    border-color: rgba(255, 68, 68, 0.7);
}
.error-popup[data-type="blocked"] .error-popup-icon svg {
    fill: #ff4444;
    filter: drop-shadow(0 0 8px #ff4444);
}
.error-popup[data-type="blocked"] .error-popup-status {
    background: rgba(255, 68, 68, 0.25);
    border-color: rgba(255, 68, 68, 0.7);
    color: #ffffff;
}

/* Expired - Rosa/Fucsia (Suscripción vencida) */
.error-popup[data-type="expired"] .error-popup-content {
    background: linear-gradient(145deg, rgba(70, 0, 55, 0.97), rgba(45, 0, 35, 0.98));
    border-color: rgba(255, 0, 200, 0.6);
    box-shadow: 0 0 40px rgba(255, 0, 200, 0.25), 0 15px 40px -10px rgba(0, 0, 0, 0.6);
}
.error-popup[data-type="expired"] .error-popup-icon {
    background: rgba(255, 0, 200, 0.25);
    border-color: rgba(255, 0, 200, 0.7);
}
.error-popup[data-type="expired"] .error-popup-icon svg {
    fill: #ff00cc;
    filter: drop-shadow(0 0 8px #ff00cc);
}
.error-popup[data-type="expired"] .error-popup-status {
    background: rgba(255, 0, 200, 0.25);
    border-color: rgba(255, 0, 200, 0.7);
    color: #ffffff;
}

/* Responsive - Móviles */
@media (max-width: 380px) {
    .error-popup-content {
        padding: 18px 20px;
        max-width: 290px;
    }
    
    .error-popup-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .error-popup-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .error-popup-title {
        font-size: 14px;
    }
    
    .error-popup-status {
        font-size: 9px;
        padding: 4px 12px;
    }
    
    .error-popup-text {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .error-popup-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .error-popup-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   BRUTE FORCE POPUP (actualizado)
============================================ */
.bruteforce-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bruteforce-popup.active {
    display: flex;
}

.bruteforce-content {
    background: linear-gradient(145deg, rgba(40, 0, 0, 0.97), rgba(20, 0, 0, 0.99));
    border: 2px solid #ff4444;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    animation: popupShake 0.5s ease;
}

@keyframes popupShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.bruteforce-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.bruteforce-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #ff4444;
    margin-bottom: 15px;
}

.bruteforce-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.bruteforce-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bruteforce-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   HIDDEN
============================================ */
.hidden {
    display: none !important;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 380px) {
    .tagline {
        flex-direction: column;
        gap: 5px;
    }

    .tagline-rotating {
        text-align: center;
    }

    .modal-card {
        padding: 24px 20px;
    }

    .otp-input {
        width: 40px;
        height: 48px;
        font-size: 18px;
        line-height: 48px;
    }
    
    .error-popup-content {
        padding: 30px 20px;
    }
    
    .error-popup-title {
        font-size: 22px;
    }
}

@media (max-height: 650px) {
    .modal-card {
        padding: 22px 22px;
    }

    .modal-header {
        margin-bottom: 18px;
    }

    .modal-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .modal-title {
        font-size: 20px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-input {
        padding: 12px 45px 12px 14px;
    }

    .btn-submit {
        padding: 13px;
        margin-top: 16px;
    }

    .modal-footer {
        margin-top: 14px;
        padding-top: 12px;
    }
}

/* ============================================
   🔧 iOS SPECIFIC FIXES - IPHONE 15 PRO MAX
============================================ */
@supports (-webkit-touch-callout: none) {
    .main-page {
        min-height: -webkit-fill-available;
    }

    /* Fix inputs en iOS */
    .form-input, .otp-input {
        font-size: 16px !important; /* Evita zoom automático */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }
    
    .otp-input {
        border-radius: 10px !important;
    }
    
    /* Fix botones en iOS */
    .btn, .btn-submit, .error-popup-btn {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

/* Fix específico para iPhone con notch */
@media screen and (max-width: 430px) and (-webkit-device-pixel-ratio: 3) {
    .form-input {
        font-size: 16px;
        padding: 16px 45px 16px 16px;
        border-radius: 12px;
    }
    
    .otp-input {
        width: 44px;
        height: 52px;
        font-size: 20px;
        border-radius: 10px;
    }
    
    .otp-container {
        gap: 8px;
    }
}
