@font-face {
    font-family: 'IRANSansX';
    src: url('fonts/IRANSansX-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'IRANSansX', sans-serif;
    
    direction: rtl;
}

/* رنگ‌ها:
   - آبی اداری: #1E3E5B (تم اصلی)
   - آبی کمی روشن‌تر برای هاور: #2F587C
   - رنگ پس‌زمینه با شفافیت: rgba(255, 255, 255, 0.95)
   - رنگ متن: #333
*/

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

.login-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #d1d1d1;
}

.login-box h1 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.login-box form {
    display: flex;
    flex-direction: column;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s ease;
    font-family: 'IRANSansX', sans-serif;
    direction: rtl;
    text-align: right;
    color: #333;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
    border-color: #1E3E5B;
}

.login-box button {
    padding: 12px;
    background: #1E3E5B;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    font-family: 'IRANSansX', sans-serif;
}

.login-box button:hover {
    background: #2F587C;
}

.error-msg {
    background: #C62828;
    color: #fff;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'IRANSansX', sans-serif;
}
