/* ===== AUTHENTICATION PAGES ===== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f2ef 0%, #e8e6e3 100%);
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    font-family: var(--font-bengali);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.auth-welcome {
    font-family: var(--font-bengali);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--secondary-color);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.lang-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: white;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Auth Form */
.auth-form {
    margin-bottom: 24px;
}

.auth-input-group {
    margin-bottom: 16px;
}

.auth-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.auth-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.auth-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.auth-input::placeholder {
    color: var(--secondary-color);
}

/* Forgot Password Link */
.forgot-password {
    text-align: right;
    margin-bottom: 16px;
}

.forgot-password-link {
    color: var(--primary-color);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

/* Auth Buttons */
.auth-btn {
    width: 100%;
    padding: 12px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.auth-btn-primary {
    background: var(--primary-color);
    color: white;
}

.auth-btn-primary:hover {
    background: var(--primary-hover);
}

.auth-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider-text {
    padding: 0 16px;
    color: var(--secondary-color);
    font-size: 13px;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
}

.auth-footer-text {
    font-size: 14px;
    color: var(--secondary-color);
}

.auth-footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer-link:hover {
    text-decoration: underline;
}

