/* ===============================================================
   LMCF — Compte & panier
   Connexion, inscription, mot de passe oublié et panier sortent tels
   quels de Hummingbird : theme.css les peint avec les variables
   Bootstrap (boutons et liens bleus, champs plats) et ignore les
   jetons LMCF. On repose ici la langue visuelle du site — carte
   blanche cerclée, champs sur fond crème avec bague dorée au focus,
   pilule navy pour l'envoi d'un formulaire, or pour le passage en
   caisse (même rôle que le bouton « Panier » de l'en-tête et que
   l'ajout au panier des vignettes de listing).

   Comme lmcf.css, ce fichier reste HORS @layer : theme.css déclare
   dans des couches de cascade, et pour les déclarations normales une
   règle hors couche l'emporte sur toutes — inutile donc de surenchérir
   en spécificité. Les jetons viennent de lmcf.css.
   =============================================================== */

/* ===============================================================
   1. Gabarit des pages compte
   =============================================================== */

/* `#wrapper` ne pose aucun padding en haut (voir lmcf.css) : sans ça la
   carte colle au fil d'Ariane. */
body#authentication .page-header,
body#registration .page-header,
body#password .page-header {
  margin-top: var(--space-10);
  margin-bottom: var(--space-6);
  text-align: center;
}
body#authentication .page-title-section,
body#registration .page-title-section,
body#password .page-title-section {
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  margin-bottom: 0;
}

/* La carte : un seul bloc par page, quel que soit le formulaire. */
body#authentication .login,
body#registration .register-form,
body#password .forgotten-password {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

/* Séparateurs internes : le `hr` de Bootstrap est un trait à 25 % d'opacité. */
body#authentication hr,
body#registration hr,
body#password hr,
body#cart hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  opacity: 1;
  margin: var(--space-6) 0;
}

body#password .send-renew-password-link {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
  margin: 0 0 var(--space-5);
}
body#password .page-footer {
  text-align: center;
}
/* Le trait au-dessus du « retour à la connexion » doublait le bord de la
   carte, juste au-dessus. */
body#password .page-footer hr {
  display: none;
}
body#password .page-footer .buttons-wrapper {
  justify-content: center;
}

/* ===============================================================
   2. Champs de formulaire
   =============================================================== */

body#authentication .form-label,
body#registration .form-label,
body#password .form-label,
body#cart .form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-ink);
  margin-bottom: var(--space-2);
}
/* L'astérisque « obligatoire » est rouge par défaut ; on le passe en or,
   le rouge n'apparaît que sur les erreurs. Selon le champ, theme.css le
   pose avant (cases à cocher) ou après (champs texte) le libellé. */
body#authentication .required::before,
body#authentication .required::after,
body#registration .required::before,
body#registration .required::after,
body#password .required::before,
body#password .required::after {
  color: var(--color-accent-600);
}

body#authentication .form-control,
body#authentication .form-select,
body#registration .form-control,
body#registration .form-select,
body#password .form-control,
body#password .form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--color-text);
  /* `background-color` et non `background` : la flèche du `select` est une
     image de fond posée par Bootstrap, on ne doit pas l'effacer. */
  background-color: var(--color-bg-alt);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  box-shadow: none;
  transition: border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
body#authentication .form-control::placeholder,
body#registration .form-control::placeholder,
body#password .form-control::placeholder {
  color: var(--color-text-muted);
}
body#authentication .form-control:focus,
body#authentication .form-select:focus,
body#registration .form-control:focus,
body#registration .form-select:focus,
body#password .form-control:focus,
body#password .form-select:focus {
  outline: none;
  color: var(--color-text);
  background-color: var(--color-bg);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.18);
}

body#authentication .form-text,
body#registration .form-text,
body#password .form-text {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* Mot de passe : l'œil est un `.btn-primary`, donc bleu plein collé au
   champ. On fond le groupe en un seul champ, bouton compris. */
body#authentication .input-group.password-field,
body#registration .input-group.password-field,
body#password .input-group.password-field {
  background: var(--color-bg-alt);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
body#authentication .password-field:focus-within,
body#registration .password-field:focus-within,
body#password .password-field:focus-within {
  background: var(--color-bg);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.18);
}
body#authentication .password-field .form-control,
body#authentication .password-field .form-control:focus,
body#registration .password-field .form-control,
body#registration .password-field .form-control:focus,
body#password .password-field .form-control,
body#password .password-field .form-control:focus {
  background: transparent;
  border: 0;
  box-shadow: none;
}
body#authentication .password-field .btn,
body#registration .password-field .btn,
body#password .password-field .btn {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--color-text-muted);
  padding: 0 var(--space-4);
}
body#authentication .password-field .btn:hover,
body#registration .password-field .btn:hover,
body#password .password-field .btn:hover {
  background: transparent;
  color: var(--color-ink);
}
/* Bootstrap donne `width: 1%` aux champs d'un `input-group` pour que
   l'adornement reste sur la même ligne. Le `width: 100%` posé plus haut
   sur `.form-control` le renvoyait sous le champ. */
body#authentication .input-group > .form-control,
body#registration .input-group > .form-control,
body#password .input-group > .form-control {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

/* Cases à cocher et boutons radio : le bleu Bootstrap -> navy de marque. */
body#authentication .form-check-input,
body#registration .form-check-input,
body#password .form-check-input {
  border-color: var(--color-border-strong);
  box-shadow: none;
}
body#authentication .form-check-input:checked,
body#registration .form-check-input:checked,
body#password .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
body#authentication .form-check-input:focus,
body#registration .form-check-input:focus,
body#password .form-check-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.18);
}
body#authentication .form-check-label,
body#registration .form-check-label,
body#password .form-check-label {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: var(--lh-normal);
}

/* ===============================================================
   3. Boutons
   =============================================================== */

/* Action principale d'un formulaire : la pilule navy de la fiche produit.
   Le `:not(.password-field .btn)` n'existe pas en CSS — l'œil est donc
   neutralisé plus haut, après cette règle dans l'ordre de lecture mais
   avec une spécificité supérieure. */
body#authentication .btn-primary,
body#registration .btn-primary,
body#password .btn-primary {
  background: var(--color-primary);
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--color-text-inverse);
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  padding: 0.8rem 1.75rem;
  box-shadow: none;
  transition: background-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
body#authentication .btn-primary:hover,
body#registration .btn-primary:hover,
body#password .btn-primary:hover {
  background: var(--color-primary-700);
  color: var(--color-text-inverse);
  transform: translateY(-1px);
}

/* En schéma sombre le navy se confond avec la carte — le bouton disparaît.
   On repasse à l'or sur encre, comme le fait lmcf.css pour
   `.lmcf-btn--primary`. Le jeton `data-theme` est porté par `<html>`. */
[data-theme="dark"] body#authentication .btn-primary,
[data-theme="dark"] body#registration .btn-primary,
[data-theme="dark"] body#password .btn-primary,
[data-theme="dark"] body#cart .cart-voucher__form .btn {
  background: var(--color-accent);
  color: #0E1B2C;
}
[data-theme="dark"] body#authentication .btn-primary:hover,
[data-theme="dark"] body#registration .btn-primary:hover,
[data-theme="dark"] body#password .btn-primary:hover,
[data-theme="dark"] body#cart .cart-voucher__form .btn:hover {
  background: var(--color-accent-600);
  color: #0E1B2C;
}
/* ...sauf l'œil du champ mot de passe, qui reste un ornement transparent. */
[data-theme="dark"] body#authentication .password-field .btn,
[data-theme="dark"] body#registration .password-field .btn,
[data-theme="dark"] body#password .password-field .btn {
  background: transparent;
  color: var(--color-text-muted);
}

/* Action secondaire : contour discret, même pilule. */
body#authentication .btn-outline-primary,
body#registration .btn-outline-primary,
body#password .btn-outline-primary,
body#cart .btn-outline-primary {
  background: transparent;
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1.5px var(--color-border-strong);
  color: var(--color-ink);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  padding: 0.8rem 1.75rem;
  transition: box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
body#authentication .btn-outline-primary:hover,
body#registration .btn-outline-primary:hover,
body#password .btn-outline-primary:hover,
body#cart .btn-outline-primary:hover {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--color-primary);
  color: var(--color-ink);
}

/* Bouton « nu » (mot de passe oublié, retour) : un lien doré. */
body#authentication .btn-basic,
body#registration .btn-basic,
body#password .btn-basic {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--color-accent-600);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body#authentication .btn-basic:hover,
body#registration .btn-basic:hover,
body#password .btn-basic:hover {
  background: transparent;
  color: var(--color-accent);
}

body#authentication .buttons-wrapper,
body#registration .buttons-wrapper,
body#password .buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
body#authentication .buttons-wrapper--split {
  justify-content: space-between;
}
body#registration .buttons-wrapper--end {
  justify-content: flex-end;
}

/* ===============================================================
   4. Connexion — bloc « pas de compte ? »
   =============================================================== */

body#authentication .login__register-prompt {
  text-align: center;
}
body#authentication .login__register-prompt .h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-ink);
  margin: 0 0 var(--space-4);
}

/* ===============================================================
   5. Inscription — bloc « déjà un compte ? »
   =============================================================== */

body#registration .register-form__login-prompt {
  margin: 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
body#registration .register-form__login-prompt a {
  color: var(--color-accent-600);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body#registration .register-form__login-prompt a:hover {
  color: var(--color-accent);
}

/* ===============================================================
   6. Panier — grille
   =============================================================== */

body#cart .cart-grid {
  --bs-gutter-x: var(--space-8);
  align-items: start;
  padding-top: var(--space-10);
}
body#cart .page-title-section {
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  margin-bottom: var(--space-6);
}

/* ===============================================================
   7. Panier — lignes produit
   =============================================================== */

/* Les `hr` qui encadrent la liste font double emploi avec les cartes. */
body#cart .cart__overview > hr {
  display: none;
}
body#cart .cart__list {
  display: grid;
  gap: var(--space-3);
}
body#cart .cart__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
@media (hover: hover) {
  body#cart .cart__item:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-sm);
  }
}

body#cart .product-line {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
body#cart .product-line__image {
  flex: none;
}
body#cart .product-line__img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-2);
}
body#cart .product-line__content {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2) var(--space-4);
  align-items: start;
}
body#cart .product-line__content-left {
  grid-column: 1;
  min-width: 0;
}
body#cart .product-line__content-right {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  justify-items: end;
  gap: var(--space-2);
}
body#cart .product-line__actions {
  grid-column: 1 / -1;
}

body#cart .product-line__title {
  display: inline-block;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--color-ink);
  text-decoration: none;
}
body#cart .product-line__title:hover {
  color: var(--color-accent-600);
}
body#cart .product-line__item--info,
body#cart .product-line__item--small-info {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
body#cart .product-line__item--prices {
  margin-top: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2);
}
body#cart .product-line__item-price {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
body#cart .product-line__item-regular-price {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-decoration: line-through;
}
body#cart .product-line__price {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-ink);
  white-space: nowrap;
}

/* Compteur de quantité : le groupe est en `width: 100%` chez Bootstrap, il
   étirait la colonne de droite sur toute la largeur de la ligne. */
body#cart .product-line__quantity-button,
body#cart .quantity-button__group {
  width: auto;
  flex-wrap: nowrap;
}
/* Les carrés bleus deviennent des boutons neutres. */
body#cart .quantity-button__group .btn {
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  color: var(--color-ink);
  box-shadow: none;
}
body#cart .quantity-button__group .btn:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-border-strong);
  color: var(--color-ink);
}
body#cart .quantity-button__group .form-control {
  flex: none;
  width: 3.5rem;
  min-width: 0;
  padding-inline: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  border-inline: 0;
  color: var(--color-text);
  text-align: center;
  font-weight: var(--fw-semibold);
  box-shadow: none;
}

body#cart .product-line__actions .js-remove-from-cart {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
body#cart .product-line__actions .js-remove-from-cart:hover {
  color: var(--color-accent-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body#cart .cart__continue-shopping {
  margin-top: var(--space-5);
}
body#cart .cart__empty {
  margin: 0;
  padding: var(--space-12) var(--space-4);
  text-align: center;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}

/* ===============================================================
   8. Panier — récapitulatif
   =============================================================== */

body#cart .cart-grid__aside-wrapper {
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
  display: grid;
  gap: var(--space-5);
}
body#cart .cart-grid__aside-wrapper > h2 {
  margin: 0;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
/* Le trait qui sépare le récapitulatif du bloc réassurance : les deux sont
   déjà des cartes distinctes. */
body#cart .cart-grid__aside-wrapper > hr {
  display: none;
}

body#cart .cart-summary {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
}
body#cart .cart-summary__subtotals {
  display: grid;
  gap: var(--space-2);
}
body#cart .cart-summary__line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-sm);
}
body#cart .cart-summary__label {
  color: var(--color-text-muted);
}
body#cart .cart-summary__value {
  color: var(--color-text);
  font-weight: var(--fw-medium);
  text-align: right;
  white-space: nowrap;
}
body#cart .cart-summary__total {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: var(--space-2);
}
body#cart .cart-summary__line--bold .cart-summary__label {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-ink);
}
body#cart .cart-summary__line--bold .cart-summary__value {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-ink);
}

/* Passage en caisse : l'or de la marque, comme le bouton « Panier » de
   l'en-tête et l'ajout au panier des vignettes. */
body#cart .cart-summary__actions {
  margin-top: var(--space-5);
}
body#cart .cart-summary__actions .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--color-accent);
  border: 0;
  border-radius: var(--radius-pill);
  color: #0E1B2C;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  padding: 0.9rem 1.5rem;
  box-shadow: var(--shadow-accent);
  transition: background-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
body#cart .cart-summary__actions .btn-primary:hover:not(:disabled):not(.disabled) {
  background: var(--color-accent-600);
  color: #0E1B2C;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(200, 164, 93, 0.35);
}
body#cart .cart-summary__actions .btn-primary:disabled,
body#cart .cart-summary__actions .btn-primary.disabled {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  box-shadow: inset 0 0 0 1px var(--color-border);
  opacity: 1;
  transform: none;
}

/* ===============================================================
   9. Panier — bon de réduction
   =============================================================== */

body#cart .cart-voucher {
  margin-top: var(--space-4);
}
body#cart .cart-voucher__accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-color: var(--color-ink);
  --bs-accordion-active-color: var(--color-ink);
  --bs-accordion-active-bg: transparent;
  --bs-accordion-border-color: var(--color-border);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-focus-border-color: var(--color-border-strong);
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-body-padding-x: 0;
}
body#cart .cart-voucher__accordion-button {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}
body#cart .cart-voucher__form {
  display: flex;
  gap: var(--space-2);
}
body#cart .cart-voucher__form .form-control {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.6rem 0.875rem;
  font-size: var(--fs-sm);
  color: var(--color-text);
  background-color: var(--color-bg-alt);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  box-shadow: none;
}
body#cart .cart-voucher__form .form-control:focus {
  outline: none;
  background-color: var(--color-bg);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.18);
}
body#cart .cart-voucher__form .btn {
  flex: none;
  background: var(--color-primary);
  border: 0;
  border-radius: var(--radius-md);
  color: var(--color-text-inverse);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: 0.6rem 1.125rem;
}
body#cart .cart-voucher__form .btn:hover {
  background: var(--color-primary-700);
  color: var(--color-text-inverse);
}
body#cart .cart-voucher__remove {
  color: var(--color-text-muted);
}
body#cart .cart-voucher__remove:hover {
  color: var(--color-accent-600);
}
body#cart .cart-voucher__code-value {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--color-accent-600);
  font-weight: var(--fw-semibold);
}

/* ===============================================================
   10. Panier — bande de produits en pied de page
   =============================================================== */

body#cart .cart-grid__footer {
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
}
/* Sur une vignette en stock, le compteur de quantité et le bouton d'ajout
   se répartissaient sur trois lignes : `.input-group` est en `width: 100%`
   et `flex-wrap: wrap` chez Bootstrap, et la colonne d'une vignette est
   trop étroite pour les tenir. */
body#cart .cart-grid__footer .product-miniature__form {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
body#cart .cart-grid__footer .product-miniature__form .quantity-button__group {
  width: auto;
  flex-wrap: nowrap;
}
body#cart .cart-grid__footer .product-miniature__form .form-control {
  flex: none;
  width: 3rem;
  min-width: 0;
  padding-inline: 0;
  text-align: center;
}
body#cart .cart-grid__footer .product-miniature__form .quantity-button__group .btn {
  padding: 0.5rem 0.625rem;
}

/* ===============================================================
   11. Responsive
   =============================================================== */

@media (max-width: 991px) {
  body#cart .cart-grid {
    padding-top: var(--space-8);
  }
  body#cart .cart-grid__aside {
    margin-top: var(--space-8);
  }
  body#cart .cart-grid__aside-wrapper {
    position: static;
  }
}

@media (max-width: 575px) {
  body#cart .product-line {
    gap: var(--space-3);
  }
  body#cart .product-line__img {
    width: 72px;
    height: 72px;
  }
  /* Prix et quantité passent sous le titre plutôt que de l'écraser. */
  body#cart .product-line__content {
    grid-template-columns: minmax(0, 1fr);
  }
  body#cart .product-line__content-right {
    grid-column: 1;
    grid-row: auto;
    grid-auto-flow: column;
    justify-items: start;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  body#authentication .buttons-wrapper--split {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: var(--space-3);
  }
  body#authentication .buttons-wrapper--split .btn-primary {
    width: 100%;
  }
  body#authentication .buttons-wrapper--split .btn-basic {
    justify-content: center;
  }
}
