﻿
        @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700;900&display=swap');
        
        /* تطبيق خط القاهرة لجميع النصوص وتدرج الخلفية */
        .loginBackGround {
            font-family: 'Cairo', sans-serif;
            /* تدرج خلفية مخصص يتماشى مع ألوان الشعار */
           
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
            overflow: hidden; /* إخفاء الزوائد الناتجة عن العناصر الزخرفية */
        }
        
        /* تأثير الخلفية التقنية - دوائر متوهجة تحاكي الدوائر الإلكترونية */
        .tech-bg-circles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .tech-bg-circles::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 5%;
            width: 200px;
            height: 200px;
            background: rgba(41, 157, 143, 0.4); /* #2A9D8F */
            border-radius: 50%;
            filter: blur(80px);
            animation: move-blur 15s infinite alternate;
        }

        .tech-bg-circles::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: 5%;
            width: 250px;
            height: 250px;
            background: rgba(37, 99, 235, 0.4); /* #2563EB */
            border-radius: 50%;
            filter: blur(100px);
            animation: move-blur-reverse 18s infinite alternate;
        }

        @keyframes move-blur {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(50px, 50px) scale(1.1); }
        }

        @keyframes move-blur-reverse {
            0% { transform: translate(0, 0) scale(1.1); }
            100% { transform: translate(-50px, -50px) scale(1); }
        }

        /* تنسيق بطاقة تسجيل الدخول Glassmorphism */
        .login-card-glass {
            background-color: rgba(255, 255, 255, 0.1); /* خلفية شفافة جداً */
            backdrop-filter: blur(10px); /* تأثير ضبابي قوي */
            border: 1px solid rgba(255, 255, 255, 0.2); /* حدود شفافة */
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            z-index: 10;
        }

        /* تنسيق حقول الإدخال */
        .input-field {
            background-color: rgba(255, 255, 255, 0.15); /* شفافية داخلية */
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white; /* لون النص الأبيض */
            transition: all 0.3s;
        }
        .input-field::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        .input-field:focus {
            background-color: rgba(255, 255, 255, 0.25);
            border-color: #34D399; /* أخضر فاتح عند التركيز */
            box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.5);
        }
        
        /* تنسيق زر تسجيل الدخول (Neumorphism/Gradient) */
        .login-button-gradient {
            /* تدرج الألوان للشعار */
            background-image: linear-gradient(to right, #2563EB, #2A9D8F); 
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
            transition: all 0.3s ease;
        }
        .login-button-gradient:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }

        /* تنسيق زر التحميل (السبينر) */
        .spinner {
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid #fff;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
            display: none;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

    .typing-container {
        text-align: center;
        transition: opacity 0.8s ease-in-out; /* تأثير الاختفاء التدريجي */
    }

    .typing-text {
        font-size: 3rem;
        font-weight: bold;
        color: var(--text-color);
        display: inline-block;
        position: relative;
        white-space: nowrap;
    }

        /* تصميم المؤشر (الخط الوامض) */
        .typing-text::after {
            content: '';
            position: absolute;
            left: -8px;
            top: 10%;
            height: 80%;
            width: 3px;
            background-color: var(--cursor-color);
            animation: blink 0.7s infinite;
        }

    @keyframes blink {
        0%, 100% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }
    }

    /* كلاس الاختفاء */
    .fade-out {
        opacity: 0;
    }
