/* فونت IRANYekan */
@font-face {
    font-family: 'IRANYekan';
    src: url('../fonts/IRANYekanRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IRANYekan', 'Tahoma', 'Arial', sans-serif;
}

body {
    background: #e2e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
}

.login-header {

    color: #222222;
    padding: 30px 20px;
    text-align: center;
}
.login-header .etipaxlogo {width: 150px;}

.login-header h1 {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'IRANYekan', sans-serif;
    border-bottom: 1px solid;
    border-color: #e2e8f0;
    padding: 8px;
    color: #2c3e50 !important;
}

.login-header p {
    font-family: 'IRANYekan', sans-serif;
}

.login-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: 'IRANYekan', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'IRANYekan', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-login {
    width: 100%;
    background: #146B3A;
    /*background: linear-gradient(135deg, #3498db, #2980b9); */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IRANYekan', sans-serif;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    background-color: #228f51;
}

.alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: 'IRANYekan', sans-serif;
}

.alert-error {
    background: #ffeaea;
    color: #c0392b;
    border: 1px solid #ffcdd2;
}

.api-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
    font-family: 'IRANYekan', sans-serif;
}

/* استایل برای متن‌های اضافی */
p {
    font-family: 'IRANYekan', sans-serif;
}

a {
    font-family: 'IRANYekan', sans-serif;
}