/* ============================================================
 * Login + auth_success page stylesheet
 * ------------------------------------------------------------
 * Owns Bootstrap variable overrides shared by login.gohtml and
 * auth_success.gohtml. Extracted from their inline <style> blocks
 * as part of MAUD-39 Phase 3.
 *
 * These pages use Bootstrap 5 (not the Maude design system) and
 * are pre-auth surfaces. Both templates link tokens.css before this
 * file so var(--color-accent-purple) resolves. The --bs-btn-bg /
 * -hover / -active values follow the purple accent in Maude's palette:
 *   #bc8cff  → var(--color-accent-purple) (exact token match)
 *   #a970f0  → purple hover state (no token; grandfathered)
 *   #9f5ee8  → purple active state (no token; grandfathered)
 * ============================================================ */

.btn-primary {
    --bs-btn-bg: var(--color-accent-purple);
    --bs-btn-border-color: var(--color-accent-purple);
    --bs-btn-hover-bg: #a970f0;
    --bs-btn-hover-border-color: #a970f0;
    --bs-btn-active-bg: #9f5ee8;
    --bs-btn-active-border-color: #9f5ee8;
    --bs-btn-focus-shadow-rgb: 188, 140, 255;
}
