body {
    font-family: Tahoma, sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.form-actions {
    text-align: left;
    margin-top: 1.5rem;
}

.form-actions button {
    background-color: #4f46e5;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.form-actions button:hover {
    background-color: #4338ca;
}

.error-box {
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
}
