/* styles.css */
@font-face {
    font-family: 'Noto Kufi';
    src: url('../noto-kufi-arabic/NotoKufiArabic-VariableFont_wght.ttf') format('truetype');
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Noto Kufi', sans-serif;
    background-color: #f0f0f0;
    direction: rtl;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 400px;
}

.logo img {
    display: block;
    margin: 0 auto;
    width: 150px;
    height: auto;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	font-size: 18px;
	font-family: 'Noto Kufi', sans-serif;
}

button:hover {
    background-color: #0056b3;
}
