:root {
    --primary-color: #3f51b5;
    --secondary-color: #ff4081;
    --dark-color: #303f9f;
    --light-color: #f5f5f5;
    --success-color: #4caf50;
    --warning-color: #ffc107;
    --danger-color: #f44336;
}

/* أنماط صفحة تسجيل الدخول */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    padding: 30px 20px;
    border-radius: 10px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
    width: 400px;
}

.icon {
    background-color: #3f51b5;
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 35px;
}

h2 {
    margin-bottom: 50px;
    font-size: 35px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: right;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    direction: rtl;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-left: 50px;
    margin-right: -10px;
}

.remember {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    margin-bottom: 10px;
    gap: 5px;
}

.login-btn {
    width: 100%;
    background-color: #3f51b5;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #303f9f;
}



.error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    text-align: right;
}