/* طراحی کلی فرم ورود */
.login-container {
    width: 100%;
    max-width: 350px !important;
    margin: 50px auto;
    padding: 20px !important;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Vazir', sans-serif;
}

.login-container h3 {
    font-size: 22px !important;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

/* طراحی فرم */
.login-form .form-group {
    margin-bottom: 15px !important;
}

.form-control {
    width: 100%;
    padding: 12px !important;
    border-radius: 8px !important;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    font-size: 14px !important;
    color: #34495e;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    background-color: #fff;
    outline: none;
}

.form-control::placeholder {
    color: #7f8c8d;
}

/* دکمه ورود */
.btn-primary {
    width: 100%;
    padding: 12px !important;
    background-color: #3498db;
    color: white;
    font-size: 16px !important;
    font-weight: bold;
    border: none;
    border-radius: 8px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* لینک فراموشی رمز عبور */
.forgot-password-link {
    display: inline-block;
    margin-top: 10px;
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

/* انیمیشن‌ها */
.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: scale(1.02);
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* استایل برای موبایل و ریسپانسیو */
@media (max-width: 768px) {
    .login-container {
        padding: 15px !important;
    }

    .form-control {
        font-size: 12px !important;
    }

    .btn-primary {
        font-size: 14px !important;
    }
}
