 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-secondary-content: #f8fafc;
            --shadow: rgba(0, 212, 255, 0.1);
            --shadow-heavy: rgba(0, 212, 255, 0.2);
            --shadow-neon: rgba(0, 212, 255, 0.3);
            --border: rgba(0, 212, 255, 0.2);
            --primary-navy: #1e3a8a;
            --primary-gold: #37d459;
            --secondary-gold: #0b81b8;
            --gradient-primary: linear-gradient(135deg, #1e3a8a, #3b82f6);
            --gradient-secondary: linear-gradient(135deg, #8b5cf6, #ec4899);
            --gradient-gold: linear-gradient(135deg, #375cd4, #b80b4d);
            --gradient-cyber: linear-gradient(135deg, #00d4ff 0%, #6366f1 50%, #8b5cf6 100%);
            --gradient-success: linear-gradient(135deg, #10b981, #059669);
            --gradient-warning: linear-gradient(135deg, #f59e0b, #d97706);
            --gradient-danger: linear-gradient(135deg, #ef4444, #dc2626);
            --gradient-neon: linear-gradient(135deg, #00ffff, #00d4ff);
        }

        [data-theme="dark"] {
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --bg-primary: #0f0f23;
            --bg-secondary: #1e1e3f;
            --bg-secondary-content: #1e1e3fe3;
            --shadow: rgba(0, 212, 255, 0.2);
            --shadow-heavy: rgba(0, 212, 255, 0.4);
            --shadow-neon: rgba(0, 255, 255, 0.5);
            --border: rgba(0, 212, 255, 0.3);
            --primary-navy: #0f0f23;
            --primary-gold: #00ffff;
            --secondary-gold: #00d4ff;
            --gradient-primary: linear-gradient(135deg, #0f0f23, #6366f1);
            --gradient-secondary: linear-gradient(135deg, #8b5cf6, #ec4899);
            --gradient-gold: linear-gradient(135deg, #00ffff, #00d4ff);
            --gradient-cyber: linear-gradient(135deg, #00ffff 0%, #6366f1 50%, #8b5cf6 100%);
        }

        body {
            font-family: 'Vazir', 'Arial', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            transition: all 0.3s ease;
        }

        /* Background Animations */
        .gradient-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-cyber);
            opacity: 0.1;
            animation: breathe 4s ease-in-out infinite;
            z-index: -4;
        }

        .moving-gradient {
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--shadow-neon) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -3;
        }

        .grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 10s linear infinite;
            z-index: -2;
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-gold);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .justice-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .justice-icon {
            position: absolute;
            color: var(--border);
            font-size: 24px;
            animation: justiceFloat 8s ease-in-out infinite;
            opacity: 0.3;
        }

        /* Container */
        .container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            z-index: 10;
        }

        .login-card {
            background: var(--bg-secondary-content);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 40px;
            width: 100%;
            max-width: 450px;
            position: relative;
            box-shadow: 0 20px 40px var(--shadow-heavy);
            animation: cardFloat 6s ease-in-out infinite;
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-cyber);
            border-radius: 20px;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite;
        }

        .login-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-secondary-content);
            border-radius: 18px;
            z-index: -1;
        }

        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 30px;
            background: var(--bg-secondary);
            border: 2px solid var(--border);
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .theme-toggle::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 22px;
            height: 22px;
            background: var(--gradient-gold);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .theme-toggle::after {
            transform: translateX(26px);
        }

        /* Logo */
        .logo {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }

        .logo-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-glow {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: var(--gradient-neon);
            border-radius: 50%;
            animation: logoGlow 2s ease-in-out infinite alternate;
            opacity: 0.3;
        }

        .logo-inner {
            width: 60px;
            height: 60px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .logo-inner svg {
            width: 30px;
            height: 30px;
            color: var(--bg-primary);
        }

        /* Title */
        .title {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 40px;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            animation: titleGlow 3s ease-in-out infinite;
        }

        .title::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: var(--gradient-cyber);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glitch 4s ease-in-out infinite;
            opacity: 0;
        }

        /* Form Styles */
        .input-group {
            position: relative;
            margin-bottom: 25px;
        }

        .input-group input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            background: var(--bg-primary);
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 16px;
            color: var(--text-primary);
            transition: all 0.3s ease;
            outline: none;
        }

        .input-group input:focus {
            border-color: var(--primary-gold);
            box-shadow: 0 0 20px var(--shadow-neon);
            transform: translateY(-2px);
        }

        .input-group label {
            position: absolute;
            top: 15px;
            right: 20px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .input-group input:focus + label,
        .input-group input:not(:placeholder-shown) + label {
            top: -10px;
            right: 15px;
            font-size: 12px;
            color: var(--primary-gold);
            background: var(--bg-secondary-content);
            padding: 0 5px;
        }

        .input-group .icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .input-group input:focus ~ .icon {
            color: var(--primary-gold);
            animation: iconPulse 0.5s ease;
        }

        .input-border-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 10px;
            background: var(--gradient-gold);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .input-group input:focus ~ .input-border-glow {
            opacity: 0.2;
            animation: borderPulse 0.5s ease;
        }

        /* Options */
        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .remember {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .remember input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--primary-gold);
        }

        .forgot-password {
            color: var(--primary-gold);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .forgot-password:hover {
            text-shadow: 0 0 10px var(--primary-gold);
            transform: translateX(-2px);
        }

        /* Login Button */
        .login-btn {
            width: 100%;
            padding: 15px;
            background: var(--gradient-gold);
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            color: var(--bg-primary);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px var(--shadow-heavy);
        }

        .login-btn-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            z-index: 2;
        }

        .btn-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-neon);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .login-btn:hover .btn-glow {
            opacity: 0.3;
            animation: btnGlow 1s ease-in-out infinite;
        }

        .loading-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-neon);
            transition: width 0.3s ease;
        }

        .login-btn:active .loading-bar {
            width: 100%;
        }

        /* Separator */
        .separator {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            color: var(--text-secondary);
        }

        .separator hr {
            flex: 1;
            border: none;
            height: 1px;
            background: var(--border);
        }

        /* Social Buttons */
        .social-logins {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border: 2px solid var(--border);
            border-radius: 10px;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-secondary);
        }

        .social-btn:hover {
            border-color: var(--primary-gold);
            color: var(--primary-gold);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px var(--shadow);
        }

        /* Error Message */
        .error-message {
            background: var(--gradient-danger);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
            animation: errorShake 0.5s ease;
        }

        /* Cursor Effects */
        .cursor-fx {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
        }

        .cursor-outer {
            width: 30px;
            height: 30px;
            border: 2px solid var(--primary-gold);
            border-radius: 50%;
            position: absolute;
            transition: all 0.1s ease;
            opacity: 0.5;
        }

        .cursor-inner {
            width: 6px;
            height: 6px;
            background: var(--primary-gold);
            border-radius: 50%;
            position: absolute;
            transition: all 0.05s ease;
        }

        /* Animations */
        @keyframes breathe {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 0.2; }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @keyframes justiceFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-30px) rotate(5deg); opacity: 0.6; }
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        @keyframes logoGlow {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        @keyframes titleGlow {
            0%, 100% { text-shadow: 0 0 10px var(--primary-gold); }
            50% { text-shadow: 0 0 20px var(--primary-gold), 0 0 30px var(--primary-gold); }
        }

        @keyframes glitch {
            0%, 90%, 100% { opacity: 0; transform: translate(0); }
            2% { opacity: 1; transform: translate(2px, 0); }
            4% { opacity: 1; transform: translate(-2px, 0); }
            6% { opacity: 1; transform: translate(0, 2px); }
            8% { opacity: 1; transform: translate(0, -2px); }
            10% { opacity: 0; transform: translate(0); }
        }

        @keyframes iconPulse {
            0% { transform: translateY(-50%) scale(1); }
            50% { transform: translateY(-50%) scale(1.2); }
            100% { transform: translateY(-50%) scale(1); }
        }

        @keyframes borderPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        @keyframes btnGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        @keyframes errorShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .login-card {
                padding: 30px 20px;
            }
            
            .title {
                font-size: 24px;
            }
            
            .options {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .social-logins {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
            .login-card {
                padding: 25px 15px;
            }
            
            .title {
                font-size: 20px;
            }
            
            .input-group input {
                padding: 12px 45px 12px 15px;
            }
            
            .login-btn {
                padding: 12px;
                font-size: 16px;
            }
        }
    