body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    text-align: center;
    direction: rtl;
}

.login-container {
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
    text-align: right;
}

.error-message {
    color: red;
    font-size: 12px;
    text-align: right;
}

.response-message {
    margin-top: 20px;
    padding: 10px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
}

.response-message.success {
    color: green;
}

.response-message.error {
    color: red;
}

.back-button, .forgot-password-link {
    display: block;
    margin-top: 20px;
    color: #333;
    text-decoration: none;
}

.back-button:hover, .forgot-password-link:hover {
    text-decoration: underline;
}
