* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    direction: rtl;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

/* شعار فيسبوك */
.logo img {
    width: 240px;
    height: auto;
    margin-bottom: 10px;
}

/* نص الترحيب */
.welcome-text {
    text-align: center;
    margin-bottom: 10px;
}

.welcome-text h2 {
    font-size: 24px;
    font-weight: normal;
    color: #1c1e21;
    line-height: 32px;
}

/* صندوق تسجيل الدخول */
.login-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 396px;
}

.login-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* حقول الإدخال */
.input-field {
    padding: 14px 16px;
    border: 1px solid #dddfe2;
    border-radius: 8px;
    font-size: 17px;
    outline: none;
    transition: border-color 0.2s;
    text-align: right;
}

.input-field:focus {
    border-color: #1877f2;
    box-shadow: 0 0 0 2px #e7f3ff;
}

.input-field::placeholder {
    color: #8a8d91;
}

/* زر تسجيل الدخول */
.login-btn {
    background-color: #1877f2;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 6px;
}

.login-btn:hover {
    background-color: #166fe5;
}

/* رابط نسيت كلمة السر */
.forgot-password {
    text-align: center;
    color: #1877f2;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* خط فاصل */
.divider {
    height: 1px;
    background-color: #dadde1;
    margin: 20px 0;
}

/* زر إنشاء حساب جديد */
.create-account-btn {
    background-color: #42b72a;
    color: white;
    padding: 14px 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: center;
}

.create-account-btn:hover {
    background-color: #36a420;
}

/* نص إنشاء صفحة */
.create-page {
    text-align: center;
    font-size: 14px;
    color: #1c1e21;
    margin-top: 28px;
}

.create-page a {
    color: #1c1e21;
    text-decoration: none;
}

.create-page a:hover {
    text-decoration: underline;
}

/* التذييل */
.footer {
    background-color: white;
    padding: 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 980px;
    margin: 0 auto;
}

.languages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.languages a {
    color: #8a8d91;
    text-decoration: none;
    font-size: 12px;
}

.languages a:hover {
    text-decoration: underline;
}

.divider-footer {
    height: 1px;
    background-color: #dadde1;
    margin: 10px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #8a8d91;
    text-decoration: none;
    font-size: 12px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.meta-copyright {
    color: #8a8d91;
    font-size: 11px;
    margin-top: 20px;
}

/* استجابة للموبايل */
@media (max-width: 480px) {
    .logo img {
        width: 180px;
    }
    
    .welcome-text h2 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .login-card {
        padding: 16px;
    }
    
    .input-field {
        font-size: 16px;
    }
    
    .login-btn {
        font-size: 18px;
    }
}