@font-face {
    font-family: 'Vazir';
    src: url('C:/Users/aalimahmoudi.SBFG/mywebsite/app/static/app/fonts/Vazir.woff2') format('woff2'),
         url('C:/Users/aalimahmoudi.SBFG/mywebsite/app/static/app/fonts/Vazir.woff') format('woff'),
         url('C:/Users/aalimahmoudi.SBFG/mywebsite/app/static/app/fonts/Vazir.woff') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* فونت و استایل عمومی */
body {
    font-family: 'Vazir', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    height: 100%;
    /* min-height: 200vh; */
}

/* کانتینر اصلی */
.login-container {
    direction: rtl; /* Right-to-left for Persian text */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    /* padding: 20px; */
    background-color: #f5f5f5;
    /* min-height: calc(120vh - 160px); */
    box-sizing: border-box;
    height: 70vh;
    position: relative;
    /* margin-top: 150px; */
    /* margin-bottom: 70px; */
}

/* فرم ورود */
.login-form-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* عنوان‌ها */
.login-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

/* فرم */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    text-align: right;
}

label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #007bff;
}

/* دکمه ورود */
.login-button1 {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button1:hover {
    background-color: #cc8400;
    transform: scale(1.05); /* Subtle hover animation */
}
.login-button1:active {
    background-color: #b37400;
    transform: scale(0.95); /* Pressed state effect */
}
/* لینک ثبت‌نام */
.register-link {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.register-link a {
    color: #007bff;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* استایل ریسپانسیو */
@media (max-width: 768px) {
    .login-form-wrapper {
        padding: 20px;
        width: 90%;
    }
}