/* ✅ تنسيق الحاوية الأساسية */
#master {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

/* ✅ تنسيق الشعار */
.logo-header {
    text-align: center;
    margin-bottom: 25px;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.association-name {
    display: block;
    margin-top: 10px;
    font-size: 26px;
    font-weight: bold;
    color: #2b7a78;
}

/* ✅ عنوان الترحيب */
.form-heading {
    font-size: 20px;
    color: #2b7a78;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

/* ✅ الحقول */
.form-control, .form-select {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

/* ✅ زر الإرسال */
.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #2b7a78;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #205f5a;
}

/* ✅ روابط تسجيل الدخول والرجوع */
.form-footer {
    margin-top: 25px;
    text-align: center;
}

.links {
    margin-top: 20px;
}

.links a {
    margin: 0 10px;
    color: #2b7a78;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.links a:hover {
    color: #205f5a;
}

.divider {
    color: #999;
    margin: 0 5px;
}

/* ✅ روابط اللغة */
.language-switch {
    margin-top: 25px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
}

.language-switch a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
}

.language-switch a:hover {
    color: #000;
}
