
        :root {
            --primary-orange: #D35400;
            --accent-orange: #FF8C00;
            --input-peach: #FFDAB9;
            --input-blue: #E8F0FE;
            --deep-bg: #000000;
        }

        body {
            background-color: var(--deep-bg);
            color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            min-height: 100vh;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at 10% 10%, rgba(211, 84, 0, 0.1) 0%, transparent 40%),
                        radial-gradient(circle at 90% 90%, rgba(211, 84, 0, 0.05) 0%, transparent 40%);
        }

        .glass-container {
            width: 100%;
            max-width: 640px;
            margin: 1rem;
            background: rgba(7, 7, 7, 0.86);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 106, 0, 0.18);
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.62);
        }

        @media (min-width: 768px) {
            .glass-container { min-height: auto; }
            .form-section { width: 100%; }
        }

        .form-section { padding: 2.75rem; display: flex; flex-direction: column; justify-content: center; }

        .input-group { margin-bottom: 1.25rem; position: relative; }
        .input-group::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent-orange);
            border-radius: 0 0 4px 4px;
        }

        .standard-input {
            width: 100%;
            padding: 12px 16px;
            border: none;
            outline: none;
            font-size: 14px;
            font-weight: 600;
            transition: transform 0.2s ease;
        }

        .peach { background-color: var(--input-peach); color: #000; }
        .blue { background-color: var(--input-blue); color: #000; }

        .captcha-box {
            background: #fff;
            padding: 12px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 1.5rem 0;
            color: #000;
        }

        .terms-consent-box {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
            margin: -0.5rem 0 1.5rem;
            padding: 0.9rem 1rem;
            border: 1px solid rgba(255, 140, 0, 0.28);
            border-radius: 10px;
            background: rgba(255, 140, 0, 0.08);
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.78rem;
            font-weight: 700;
            line-height: 1.45;
        }

        .action-btn {
            width: 100%;
            background: var(--primary-orange);
            color: #000;
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            padding: 16px;
            border-radius: 4px;
            letter-spacing: 2px;
            box-shadow: 0 4px 0 #8a3700;
            transition: all 0.2s;
        }

        .action-btn:disabled { opacity: 0.5; cursor: not-allowed; }

       
    /* CSS layer to prevent text highlighting */
    body {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
