/* تنسيقات خاصة بصفحة forgot-password.html */

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    direction: rtl; /* للغة العربية */
    text-align: right; /* للغة العربية */
}

.forgot-password-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.forgot-password-container h2 {
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

.forgot-password-container .description-text {
    margin-bottom: 25px;
    color: #666;
}

.forgot-password-container .form-group {
    margin-bottom: 20px;
    text-align: right;
}

.forgot-password-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.forgot-password-container .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.forgot-password-container .input-wrapper i {
    padding: 12px;
    background-color: #f0f0f0;
    color: #777;
    border-right: 1px solid #ddd; /* لأيقونة على اليمين في RTL */
}

.forgot-password-container input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: transparent;
    text-align: right;
}

.forgot-password-container .error {
    color: #dc3545; /* لون أحمر لرسائل الخطأ */
    font-size: 14px;
    margin-top: 5px;
    display: block;
    text-align: right;
}

.forgot-password-container .btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.forgot-password-container .btn-submit:hover {
    background-color: #0056b3;
}

.forgot-password-container .back-to-login {
    margin-top: 20px;
    font-size: 15px;
}

.forgot-password-container .back-to-login a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password-container .back-to-login a:hover {
    text-decoration: underline;
}

/* تنسيقات إضافية للشعار إذا لم تكن موجودة في stylelogin.css */
.forgot-password-container .logo img {
    max-width: 100px;
    margin-bottom: 20px;
}