/* --- Login Section --- */
.login-container {
    max-width: 450px;
    margin: 100px auto; /* مساحة أكبر فوق وتحت للتوسط */
    text-align: center;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-family: 'Prata', serif; /* الخط الكلاسيكي في الصورة */
    font-weight: 400;
}

.section-title .line {
    width: 40px;
    height: 1px; /* خط أنحف ليعطي مظهر رقيق */
    background-color: #333;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-form input {
    padding: 10px 15px;
    border: 1px solid #777; /* حدود داكنة قليلاً */
    outline: none;
    font-size: 14px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #333;
}

.form-options a {
    text-decoration: none;
    color: #444;
}

.btn-signin {
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px 35px;
    border: none;
    margin: 20px auto 0;
    cursor: pointer;
    font-size: 14px;
    width: fit-content; /* ليكون الزر على حجم الكلمة فقط */
}

.btn-signin:hover {
    background-color: #444;
}

/* قسم الاشتراك (Newsletter) */
.newsletter-container {
    text-align: center;
    padding: 60px 0;
}

.newsletter-container h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.newsletter-container p {
    color: #9ca3af;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    outline: none;
}

.newsletter-form button {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 13px;
}

/* التجاوب للموبايل */
@media (max-width: 768px) {


    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
}