
        :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: 1000px;
            margin: 1rem;
            background: rgba(15, 15, 15, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        @media (min-width: 768px) {
            .glass-container { flex-direction: row; height: 650px; }
            .brand-section { width: 40%; border-right: 1px solid rgba(255, 255, 255, 0.05); }
            .form-section { width: 60%; }
        }

        .brand-section {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,10,0,0.9) 100%),
                        url('https://images.unsplash.com/photo-1511193311914-0346f16efe90?q=80&w=1000');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .form-section { padding: 2.5rem; 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;
        }

        .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;
    }
