/* تنظیمات کلی صفحه */
:root {
    --primary-color: #4a90e2; /* آبی ملایم */
    --secondary-color: #f5f7fa; /* پس‌زمینه فرم */
    --text-color: #333;
    --border-color: #dfe3e8;
    --font-family: 'Vazirmatn', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text-color);
}

/* کانتینر اصلی */
.login-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    min-height: 600px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* بخش فرم ورود */
.login-form {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: var(--secondary-color);
}

.form-wrapper {
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-wrapper p {
    color: #666;
    margin-bottom: 30px;
}

/* گروه‌های ورودی */
.input-group {
    margin-bottom: 20px;
    text-align: right;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

/* گزینه‌های بیشتر */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.options a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.options a:hover {
    color: #357abd;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me label {
    margin-right: 8px;
    color: #666;
}

/* دکمه ورود */
.btn-login {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-login:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

/* لینک ثبت‌نام */
.signup-link {
    margin-top: 25px;
    font-size: 14px;
}

.signup-link a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

/* بخش تصویر */
.login-image {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1621243804936-775306a8f2e3?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* طراحی واکنش‌گرا برای موبایل */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        min-height: 100vh;
        border-radius: 0;
    }

    .login-image {
        display: none; /* مخفی کردن تصویر در موبایل */
    }

    .login-form {
        padding: 30px;
    }

    .form-wrapper h2 {
        font-size: 24px;
    }
}