/* Customer / shared auth layouts (Bootstrap grid + custom panels) */
.auth-page {
    padding-bottom: 3rem;
}

.auth-hero-panel {
    background: linear-gradient(145deg, var(--sh-topbar) 0%, var(--sh-topbar-2) 55%, var(--sh-accent-deep) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    min-height: 100%;
    box-shadow: 0 12px 40px rgba(15, 23, 41, 0.25);
}

.auth-hero-panel h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.auth-hero-panel .lead-ish {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.auth-hero-panel ul {
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
}

.auth-hero-panel li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.auth-hero-panel li strong {
    display: inline-block;
    margin-bottom: 0.15rem;
}

.auth-hero-panel .muted {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
}

.auth-card {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.auth-card .card-body {
    padding: 2rem 1.75rem;
}

.auth-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.auth-type-toggle {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    margin-bottom: 1.25rem;
}

.auth-type-toggle label {
    flex: 1;
    margin: 0;
    text-align: center;
    cursor: pointer;
}

.auth-type-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.auth-type-toggle span {
    display: block;
    padding: 0.65rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    background: #f8f9fa;
    transition: background 0.2s ease, color 0.2s ease;
}

.auth-type-toggle input:checked + span {
    background: linear-gradient(135deg, var(--sh-accent), var(--sh-accent-mid));
    color: #fff;
}

.auth-vendor-note {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
}
