/* إعدادات أساسية */
body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background: url("/images/asm.png") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: white;
}
body, h1, h2, h3, h4, h5, h6, p, input, button, table, th, td {
    font-family: 'Tajawal', sans-serif;
}
/* زر تغيير اللغة */
.language-switch {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.language-switch a {
    font-weight: bold;
    color: #ffc107;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    margin: 0 4px;
    border-radius: 6px;
    text-decoration: none;
}

.language-switch a:hover {
    background-color: #ffc107;
    color: black;
}

/* الرسائل */
.alert {
    opacity: 0.95;
}

/* حاوية الشاشة الرئيسية */
.login-screen {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* الصندوق الذهبي */
.login-box {
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid gold;
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    text-align: center;
}

/* شعار الدائرة */
.login-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
}

/* عنوان البرنامج */
.login-title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* مجموعة الحقول */
.form-group {
    margin-bottom: 16px;
}

/* حقل إدخال */
.form-input {
    background-color: #1c1c1c;
    border: 1px solid #444;
    color: white;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #aaa;
}

.form-input:focus {
    border-color: gold;
    box-shadow: 0 0 5px gold;
}

/* زر إرسال (تسجيل الدخول أو تسجيل الحساب) */
.submit-btn {
    background-color: transparent;
    color: gold !important;
    font-weight: bold;
    padding: 12px;
    border: 2px solid gold;
    border-radius: 8px;
    display: block;
    width: 75%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: gold;
    color: black !important;
}

/* رابط نسيت كلمة المرور */
.forgot-link {
    display: block;
    margin-bottom: 10px;
    color: white;
    font-size: 0.9rem;
}

/* نص "أو تسجيل بواسطة" */
.social-login-label {
    margin: 16px 0 8px;
    font-size: 0.95rem;
}

/* حاوية أيقونات جوجل وواتساب */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 16px;
}

/* أيقونات وسائل التواصل */
.social-icons a img {
    width: 40px;
    height: 40px;
}

/* زر التسجيل */
.register-btn {
    background-color: transparent;
    color: gold !important;
    font-weight: bold;
    padding: 12px;
    border: 2px solid gold;
    border-radius: 8px;
    display: block;
    width: 75%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: gold;
    color: black !important;
}

/* إزالة تسطير الروابط */
a {
    text-decoration: none !important;
}