* {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top, rgba(25, 227, 255, 0.18), transparent 35%),
                linear-gradient(160deg, #070b18, #11172a 55%, #070b18);
            color: #ffffff;
        }

        .loginScreen {
            min-height: 100vh;
            padding: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .neonRing {
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(25, 227, 255, 0.16);
            filter: blur(55px);
            top: -80px;
            right: -80px;
        }

        .loginCard {
            width: 100%;
            max-width: 420px;
            position: relative;
            padding: 24px 22px;
            border-radius: 28px;
            background: rgba(13, 20, 39, 0.88);
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 24px 70px rgba(0,0,0,0.45);
            backdrop-filter: blur(16px);
        }

        .brandHeader {
            text-align: center;
            margin-bottom: 20px;
        }

        .brandLogo {
            width: 86px;
            height: 86px;
            object-fit: contain;
            display: block;
            margin: 0 auto 12px;
            border-radius: 24px;
        }

        .brandHeader span {
            display: inline-flex;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 11px;
            letter-spacing: 1px;
            color: #19E3FF;
            background: rgba(25, 227, 255, 0.1);
            border: 1px solid rgba(25, 227, 255, 0.25);
        }

        .heroText {
            text-align: center;
            margin-bottom: 22px;
        }

        .heroText h1 {
            margin: 0;
            font-size: clamp(30px, 8vw, 42px);
            line-height: 1;
            letter-spacing: -1px;
        }

        .heroText h1 span {
            display: block;
            color: #19E3FF;
        }

        .heroText p {
            margin: 12px auto 0;
            max-width: 310px;
            color: rgba(255,255,255,0.68);
            font-size: 14px;
            line-height: 1.45;
        }

        .loginForm {
            display: grid;
            gap: 14px;
        }

        .inputShell label {
            display: block;
            margin: 0 0 7px 4px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.2px;
            color: rgba(255,255,255,0.6);
        }

        .inputBox {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 54px;
            padding: 0 14px;
            border-radius: 18px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .inputIcon {
            width: 28px;
            text-align: center;
            opacity: 0.85;
        }

        .inputBox input {
            width: 100%;
            border: 0;
            outline: 0;
            background: transparent;
            color: #ffffff;
            font-size: 15px;
        }

        .inputBox input::placeholder {
            color: rgba(255,255,255,0.38);
        }

        .buttonStack {
            display: grid;
            gap: 10px;
            margin-top: 6px;
        }

        .loginBtn {
            width: 100%;
            min-height: 52px;
            border: 0;
            border-radius: 18px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
        }

        .loginBtn.primary {
            color: #06101f;
            background: linear-gradient(135deg, #19E3FF, #8E5BFF);
            box-shadow: 0 14px 34px rgba(25, 227, 255, 0.2);
        }

        .loginBtn.secondary {
            color: #ffffff;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.14);
        }

        .loginFooter {
            margin-top: 16px;
            text-align: center;
        }

        .loginFooter a {
            color: #19E3FF;
            font-size: 14px;
            text-decoration: none;
        }

        .appBadge {
            margin-top: 18px;
            padding: 12px 14px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
            border-radius: 18px;
            background: rgba(25, 227, 255, 0.08);
            color: rgba(255,255,255,0.7);
            font-size: 12.5px;
            line-height: 1.35;
        }

        @media (max-height: 720px) {
            .loginScreen {
                align-items: flex-start;
                padding-top: 14px;
                padding-bottom: 14px;
            }

            .loginCard {
                padding: 18px;
                border-radius: 24px;
            }

            .brandLogo {
                width: 68px;
                height: 68px;
                margin-bottom: 8px;
            }

            .heroText {
                margin-bottom: 16px;
            }

            .heroText h1 {
                font-size: 30px;
            }

            .appBadge {
                display: none;
            }
        }



        .recoveryScreen {
            min-height: 100vh;
            padding: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .neonRing {
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(25, 227, 255, 0.16);
            filter: blur(55px);
            top: -80px;
            right: -80px;
        }

        .recoveryCard {
            width: 100%;
            max-width: 420px;
            position: relative;
            padding: 24px 22px;
            border-radius: 28px;
            background: rgba(13, 20, 39, 0.88);
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 24px 70px rgba(0,0,0,0.45);
            backdrop-filter: blur(16px);
        }

        .brandHeader {
            text-align: center;
            margin-bottom: 20px;
        }

        .brandLogo {
            width: 86px;
            height: 86px;
            object-fit: contain;
            display: block;
            margin: 0 auto 12px;
            border-radius: 24px;
        }

        .brandHeader span {
            display: inline-flex;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 11px;
            letter-spacing: 1px;
            color: #19E3FF;
            background: rgba(25, 227, 255, 0.1);
            border: 1px solid rgba(25, 227, 255, 0.25);
        }

        .heroText {
            text-align: center;
            margin-bottom: 22px;
        }

        .heroText h1 {
            margin: 0;
            font-size: clamp(30px, 8vw, 40px);
            line-height: 1;
            letter-spacing: -1px;
        }

        .heroText h1 span {
            display: block;
            color: #19E3FF;
        }

        .heroText p {
            margin: 12px auto 0;
            max-width: 320px;
            color: rgba(255,255,255,0.68);
            font-size: 14px;
            line-height: 1.45;
        }

        .recoveryForm {
            display: grid;
            gap: 14px;
        }

        .inputShell label,
        .inputShell b {
            display: block;
            margin: 0 0 7px 4px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.2px;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
        }

        .inputBox {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 54px;
            padding: 0 14px;
            border-radius: 18px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .inputIcon {
            width: 28px;
            height: 28px;
            object-fit: contain;
            opacity: 0.85;
        }

        .inputBox input {
            width: 100%;
            border: 0;
            outline: 0;
            background: transparent;
            color: #ffffff;
            font-size: 15px;
        }

        .inputBox input::placeholder {
            color: rgba(255,255,255,0.38);
        }

        .mobileBtn {
            width: 100%;
            min-height: 52px;
            border: 0;
            border-radius: 18px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            color: #06101f;
            background: linear-gradient(135deg, #19E3FF, #8E5BFF);
            box-shadow: 0 14px 34px rgba(25, 227, 255, 0.2);
            margin-top: 4px;
        }

        .backLogin {
            margin-top: 16px;
            text-align: center;
        }

        .backLogin a {
            color: #19E3FF;
            font-size: 14px;
            text-decoration: none;
        }

        .appBadge {
            margin-top: 18px;
            padding: 12px 14px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
            border-radius: 18px;
            background: rgba(25, 227, 255, 0.08);
            color: rgba(255,255,255,0.7);
            font-size: 12.5px;
            line-height: 1.35;
        }

        .gtranslate_wrapper {
            margin-top: 14px;
            text-align: center;
        }

        @media (max-height: 680px) {
            .recoveryScreen {
                align-items: flex-start;
                padding-top: 14px;
                padding-bottom: 14px;
            }

            .recoveryCard {
                padding: 18px;
                border-radius: 24px;
            }

            .brandLogo {
                width: 68px;
                height: 68px;
                margin-bottom: 8px;
            }

            .heroText h1 {
                font-size: 30px;
            }

            .appBadge {
                display: none;
            }
        }

        
        .passwordScreen {
            min-height: 100vh;
            padding: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .neonRing {
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(25, 227, 255, 0.16);
            filter: blur(55px);
            top: -80px;
            right: -80px;
        }

        .passwordCard {
            width: 100%;
            max-width: 430px;
            position: relative;
            padding: 24px 22px;
            border-radius: 28px;
            background: rgba(13, 20, 39, 0.88);
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 24px 70px rgba(0,0,0,0.45);
            backdrop-filter: blur(16px);
        }

        .brandHeader {
            text-align: center;
            margin-bottom: 18px;
        }

        .brandLogo {
            width: 82px;
            height: 82px;
            object-fit: contain;
            display: block;
            margin: 0 auto 10px;
            border-radius: 24px;
        }

        .brandHeader span {
            display: inline-flex;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 11px;
            letter-spacing: 1px;
            color: #19E3FF;
            background: rgba(25, 227, 255, 0.1);
            border: 1px solid rgba(25, 227, 255, 0.25);
        }

        .heroText {
            text-align: center;
            margin-bottom: 20px;
        }

        .heroText h1 {
            margin: 0;
            font-size: clamp(29px, 8vw, 40px);
            line-height: 1;
            letter-spacing: -1px;
        }

        .heroText h1 span {
            display: block;
            color: #19E3FF;
        }

        .heroText p {
            margin: 12px auto 0;
            max-width: 320px;
            color: rgba(255,255,255,0.68);
            font-size: 14px;
            line-height: 1.45;
        }

        .passwordForm {
            display: grid;
            gap: 14px;
        }

        .inputShell label,
        .inputShell b {
            display: block;
            margin: 0 0 7px 4px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.2px;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
        }

        .inputBox {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 54px;
            padding: 0 14px;
            border-radius: 18px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .inputIcon {
            width: 24px;
            height: 24px;
            object-fit: contain;
            opacity: 0.85;
        }

        .eyeIcon {
            width: 24px;
            height: 24px;
            object-fit: contain;
            cursor: pointer;
            opacity: 0.85;
        }

        .inputBox input {
            width: 100%;
            border: 0;
            outline: 0;
            background: transparent;
            color: #ffffff;
            font-size: 15px;
        }

        .inputBox input::placeholder {
            color: rgba(255,255,255,0.38);
        }

        .validaPass {
            padding: 12px 14px;
            border-radius: 18px;
            background: rgba(255,255,255,0.055);
            border: 1px solid rgba(255,255,255,0.08);
            display: grid;
            gap: 4px;
        }

        .validaPass ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
        }

        .validaPass ul:last-child {
            grid-template-columns: 1fr;
        }

        .validaPass li {
            font-size: 12px;
            line-height: 1.25;
        }

        .validaPass .error {
            color: #ff8fa3;
        }

        .validaPass .success,
        .validaPass .correcto {
            color: #55f0a6;
        }

        .mobileBtn {
            width: 100%;
            min-height: 52px;
            border: 0;
            border-radius: 18px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            color: #06101f;
            background: linear-gradient(135deg, #19E3FF, #8E5BFF);
            box-shadow: 0 14px 34px rgba(25, 227, 255, 0.2);
            margin-top: 4px;
        }

        .backLogin {
            margin-top: 16px;
            text-align: center;
        }

        .backLogin a {
            color: #19E3FF;
            font-size: 14px;
            text-decoration: none;
        }

        .contenedorAlerta {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.68);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .ventanaAlerta {
            width: 100%;
            max-width: 330px;
            padding: 22px;
            border-radius: 22px;
            background: #11172a;
            border: 1px solid rgba(255,255,255,0.12);
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.45);
        }

        .ventanaAlerta p {
            margin: 0;
            color: #ffffff;
            font-size: 15px;
        }

        .cierraAlerta {
            border: 0;
            border-radius: 14px;
            min-height: 42px;
            padding: 0 18px;
            font-weight: 800;
            background: linear-gradient(135deg, #19E3FF, #8E5BFF);
            color: #06101f;
        }

        .gtranslate_wrapper {
            margin-top: 14px;
            text-align: center;
        }

        @media (max-height: 720px) {
            .passwordScreen {
                align-items: flex-start;
                padding-top: 14px;
                padding-bottom: 14px;
            }

            .passwordCard {
                padding: 18px;
                border-radius: 24px;
            }

            .brandLogo {
                width: 64px;
                height: 64px;
            }

            .heroText {
                margin-bottom: 14px;
            }

            .heroText h1 {
                font-size: 29px;
            }
        }