
        :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: 600px;
            }
        }

        .brand-section {
            padding: 3rem;
            background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(20,10,0,0.95) 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;
            width: 100%;
        }

        @media (min-width: 768px) {
            .brand-section { width: 40%; border-right: 1px solid rgba(255, 255, 255, 0.05); }
        }

        .form-section {
            padding: 2.5rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .form-section { width: 60%; }
        }

        .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: 14px 16px;
            border: none;
            outline: none;
            font-size: 14px;
            font-weight: 700;
            transition: all 0.2s ease;
        }

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

        .standard-input::placeholder { color: rgba(0,0,0,0.4); text-transform: uppercase; font-size: 11px; letter-spacing: 1px; }

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

        .action-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
        .action-btn:active { transform: translateY(2px); box-shadow: none; }
        
        .close-icon {
            position: absolute;
            top: 25px;
            right: 25px;
            color: rgba(255,255,255,0.2);
            font-size: 20px;
            cursor: pointer;
        }


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

    