/* =========================================================
   Auth Pages - صفحات ورود / ثبت‌نام / OTP
   ========================================================= */

.auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo .logo-badge {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    margin: 0 auto 12px;
    box-shadow: var(--shadow-md);
}

.auth-title {
    text-align: center;
    font-size: 19px;
    margin-bottom: 6px;
}

.auth-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 13.5px;
    margin-bottom: 26px;
}

.auth-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13.5px;
    color: var(--color-text-muted);
}

.role-select-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.role-select-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.role-select-item:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-soft);
}

.role-select-item .role-name {
    font-weight: 700;
}

.staff-login-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: var(--color-text-muted);
    text-decoration: underline;
}
