/* تعريف الألوان */
:root {
    --primary-color: #021f51;
    --secondary-color: #8c8c9c;
    --text-color: #ffffff;
}

/* تنسيق الصفحة */
body {
    font-family: Arial, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* تصميم الحاوية الرئيسية */
.login-container {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(152, 152, 153, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* العنوان */
h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* تنسيق الحقول */
.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
}

/* زر تسجيل الدخول */
button {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background-color: #012040;
}

/* رسالة الخطأ */
.error-message {
    color: red;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* نص التسجيل */
.register-text {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.register-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.register-text a:hover {
    text-decoration: underline;
}
