/* استایل صفحات احراز هویت */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px - 150px);
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: var(--gray-800);
}

.auth-card p {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.captcha-question {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    direction: ltr;
    white-space: nowrap;
    font-size: 1.1rem;
    border: 1px solid var(--gray-200);
}

.form-actions {
    margin-top: 2rem;
}

.form-actions .btn {
    width: 100%;
    padding: 0.8rem;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.auth-links a {
    color: var(--orange);
    font-weight: 600;
}

.alert {
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-error {
    background: #FEE2E2;
    color: #B91C1C;
    border: 1px solid #FCA5A5;
}

.alert-success {
    background: #D1FAE5;
    color: #047857;
    border: 1px solid #6EE7B7;
}