/*
 * Recolors the plain Symfony/Bootstrap pages (login, register, forgot/reset
 * password — templates extending base.html.twig) to match the violet accent
 * used on the public frontend and in the EasyAdmin theme
 * (public/css/admin-theme.css). These pages don't go through EasyAdmin at
 * all, so they need their own override.
 */
:root {
    --bs-primary: #7c3aed;
    --bs-primary-rgb: 124, 58, 237;
}

body {
    background-color: #fafaf9;
}

.btn-primary {
    --bs-btn-bg: #7c3aed;
    --bs-btn-border-color: #7c3aed;
    --bs-btn-hover-bg: #6d28d9;
    --bs-btn-hover-border-color: #6d28d9;
    --bs-btn-active-bg: #5b21b6;
    --bs-btn-active-border-color: #5b21b6;
    --bs-btn-focus-shadow-rgb: 124, 58, 237;
    --bs-btn-disabled-bg: #7c3aed;
    --bs-btn-disabled-border-color: #7c3aed;
}

.btn-outline-primary {
    --bs-btn-color: #7c3aed;
    --bs-btn-border-color: #7c3aed;
    --bs-btn-hover-bg: #7c3aed;
    --bs-btn-hover-border-color: #7c3aed;
    --bs-btn-active-bg: #6d28d9;
    --bs-btn-active-border-color: #6d28d9;
    --bs-btn-focus-shadow-rgb: 124, 58, 237;
}
