       :root { --yalla-gold: #ffb752; --yalla-blue: #0074a6; --dark-color: #201d22; }
        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--yalla-gold) !important;
            background: url('https://yalla-falla.ebznz.com/assets/img/bg.jpg') no-repeat center center fixed;
            background-size: cover;
            height: 100vh;
            display: flex;
            align-items: center;
        }
        .login-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4); z-index: 1;
        }
        
        .login-box {
            position: relative; z-index: 2;
            max-width: 420px; width: 90%; margin: auto;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px; border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            backdrop-filter: blur(10px);
            text-align: center;
        }
        
        .register-box {
            position: relative; z-index: 2;
            max-width: 550px; width: 90%; margin: auto;
            background: rgba(255, 255, 255, 0.98);
            padding: 40px; border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .welcome-title {
            color: var(--dark-color);
            font-weight: 800;
            margin-bottom: 15px;
        }
        .welcome-text {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .form-control {
            border-radius: 12px; padding: 25px 15px;
            background: #f8f9fa; border: 1px solid #eee; transition: 0.3s;
        }
        .form-control:focus {
            border-color: var(--yalla-gold); box-shadow: 0 0 10px rgba(255,183,82,0.2); background: #fff;
        }
        .btn-main {
            background: var(--yalla-gold); color: var(--dark-color);
            font-weight: 800; border-radius: 12px; padding: 12px;
            border: none; transition: 0.3s;
        }
        .btn-main:hover { background: #f7a028; transform: translateY(-2px); }
        
        .btn-facebook {
            background-color: #1877f2; color: #fff;
            font-weight: 600; border-radius: 12px; padding: 10px; border: none;
        }
        .btn-facebook:hover { background: #145dbf; color: #fff; }

        .divider {
            display: flex; align-items: center; text-align: center; margin: 20px 0;
            color: #888; font-size: 13px;
        }
        .divider::before, .divider::after {
            content: ''; flex: 1; border-bottom: 1px solid #eee;
        }
        .divider:not(:empty)::before { margin-left: .5em; }
        .divider:not(:empty)::after { margin-right: .5em; }

        .logo-img { transition: 0.5s; }
        .logo-img:hover { transform: scale(1.05); }
        
        .form-group {
    text-align: right;
}
.form-group label {
    display: block; /* لضمان بقاء الليبل في اليمين دائماً */
    width: 100%;
}



.btn-yalla-main {

background: linear-gradient(135deg, #ffb752b5 70%, #0173a28f 100%);
border: none;
color: #201d22 !important;
font-weight: 800; border-radius: 12px; padding: 12px;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 8px 20px rgba(255, 183, 82, 0.3);
text-shadow: #ffffff 1px 1px 2px;
}

.btn-yalla-main:hover {
    /* عند الـ hover: اللون الأزرق يتقدم ليصبح مسيطراً من 30% ويبدأ التدرج الفعلي */
    background: linear-gradient(135deg, #ffb752b5 0%, #0173a28f 70%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(1, 115, 162, 0.3); /* تغيير لون الظل قليلاً ليتناسب مع زيادة الأزرق */
     color: #fff !important; /* تغيير النص للأبيض ليظهر بوضوح فوق الأزرق المتزايد */
     text-shadow: #201d22 1px 1px 2px;
}

.btn-yalla-main:active {
    transform: translateY(-1px);
}

/* إضافة لمسة احترافية: وهج خفيف */
.btn-yalla-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: 0.3s;
}

.btn-yalla-main:hover::before {
    opacity: 1;
}