
        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ===== PAGE LAYOUT ===== */
        .login-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .login-wrapper {
            max-width: 1300px;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        /* ===== LEFT SIDE - WELCOME CARD ===== */
        .welcome-card {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.7), rgba(10, 10, 10, 0.8));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 40px;
            padding: 3.5rem 3rem;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .welcome-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotateGlow 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotateGlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .welcome-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
        }

        .welcome-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            color: #d4af37;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 2rem;
        }

        .welcome-badge i {
            font-size: 1rem;
        }

        .welcome-title {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fff, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            font-family: 'Cinzel', serif;
            line-height: 1.2;
        }

        .welcome-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .motivation-quote {
            background: rgba(0, 0, 0, 0.3);
            border-left: 4px solid #d4af37;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 2.5rem;
        }

        .motivation-quote i {
            color: #d4af37;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .motivation-quote p {
            color: #fff;
            font-size: 1.2rem;
            font-style: italic;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .motivation-quote span {
            color: rgba(212, 175, 55, 0.8);
            font-size: 0.9rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            background: #d4af37;
            color: #000;
            transform: scale(1.1) rotate(5deg);
        }

        .feature-text h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .feature-text p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
        }

        /* ===== RIGHT SIDE - LOGIN CARD ===== */
        .login-card {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.7), rgba(10, 10, 10, 0.8));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 40px;
            padding: 3rem;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            animation: slideInRight 1s ease-out 0.3s both;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotateGlow 20s linear infinite;
            pointer-events: none;
        }

        .login-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
        }

        .login-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .login-logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #d4af37, #ffd700);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .login-logo i {
            font-size: 2.5rem;
            color: #000;
        }

        .login-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.5rem;
            font-family: 'Cinzel', serif;
        }

        .login-header p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
        }

        /* ===== ALERT MESSAGE ===== */
        .alert-message {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid #d4af37;
            border-radius: 15px;
            color: #ffd700;
            margin-bottom: 2rem;
            font-weight: 600;
            backdrop-filter: blur(5px);
        }

        .alert-message i {
            font-size: 1.2rem;
        }

        /* ===== FORM STYLES ===== */
        .login-form {
            width: 100%;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: #d4af37;
            font-size: 1.1rem;
            z-index: 2;
        }

        .form-control {
            width: 100%;
            height: 60px;
            padding: 0 3rem 0 3rem;
            background: rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Cairo', sans-serif;
        }

        .form-control:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
            background: rgba(0, 0, 0, 0.5);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .input-border {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
            transition: width 0.3s ease;
            border-radius: 0 0 15px 15px;
        }

        .form-control:focus ~ .input-border {
            width: 100%;
        }

        /* ===== CAPTCHA ===== */
        .captcha-wrapper {
            display: flex;
            justify-content: center;
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
        }

        /* ===== SUBMIT BUTTON ===== */
        .btn-login {
            width: 100%;
            height: 65px;
            background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
            background-size: 200% 200%;
            color: #000;
            border: none;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            font-family: 'Cinzel', serif;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-login::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-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
            background-position: right center;
        }

        .btn-login:hover::before {
            left: 100%;
        }

        .btn-login i {
            transition: transform 0.3s ease;
        }

        .btn-login:hover i {
            transform: translateX(5px);
        }

        /* ===== FORM FOOTER ===== */
        .form-footer {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .forgot-link {
            color: #d4af37;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .forgot-link:hover {
            color: #ffd700;
            gap: 0.8rem;
        }

        .register-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            margin-top: 1rem;
        }

        .register-link {
            color: #d4af37;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            margin-left: 0.5rem;
        }

        .register-link:hover {
            color: #ffd700;
            text-decoration: underline;
        }

        /* ===== BACKGROUND ELEMENTS ===== */
        .login-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 30s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            animation: orbFloat 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
            top: -250px;
            right: -250px;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent);
            bottom: -200px;
            left: -200px;
            animation-delay: 10s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-40px) scale(1.1); }
        }

        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .floating-icons i {
            position: absolute;
            color: rgba(212, 175, 55, 0.1);
            font-size: 2.5rem;
            animation: iconFloat 25s ease-in-out infinite;
        }

        .floating-icons i:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-icons i:nth-child(2) { top: 60%; right: 15%; animation-delay: 7s; }
        .floating-icons i:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 14s; }
        .floating-icons i:nth-child(4) { top: 40%; right: 25%; animation-delay: 21s; }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .login-wrapper {
                grid-template-columns: 1fr;
                max-width: 600px;
                gap: 2rem;
            }

            .welcome-card {
                order: 2;
            }

            .login-card {
                order: 1;
            }

            .welcome-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .login-page {
                padding: 1rem;
            }

            .welcome-card,
            .login-card {
                padding: 2rem;
            }

            .welcome-title {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .login-header h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .welcome-card,
            .login-card {
                padding: 1.5rem;
            }

            .welcome-title {
                font-size: 1.8rem;
            }

            .motivation-quote p {
                font-size: 1rem;
            }

            .btn-login {
                height: 55px;
                font-size: 1rem;
            }
        }
    