/* ====== عنوان الصفحة ====== */
.auth-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

/* ====== صندوق النموذج ====== */
.auth-box {
    background: #fff;
    padding: 20px 18px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ====== اللابل ====== */
.auth-label {
    font-size: 13px;
    font-weight: 500;
}

/* ====== حقول الإدخال ====== */
.auth-input {
    width: 100%;
    padding: 10px;
    margin: 4px 0 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.auth-input:focus {
    border-color: #6C1B8C;
    outline: none;
}

/* ====== لينك نسيان الباسورد ====== */
.forgot-link {
    font-size: 12px;
    color: #6C1B8C;
    text-decoration: none;
}

/* ====== زر الدخول / التسجيل ====== */
.auth-btn {
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    border: none;
    border-radius: 12px;
    background: #6C1B8C;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.auth-btn:hover {
    opacity: 0.92;
}

/* ====== رسالة خطأ ====== */
.auth-error {
    color: red;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

/* ====== رابط أسفل النموذج ====== */
.auth-bottom-text {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
}

.auth-bottom-text a {
    color: #6C1B8C;
    font-weight: 700;
    text-decoration: none;
}
