body {
  background-color: var(--body-bg);
  color: var(--body-text);
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Style personnalisé des champs Bootstrap */
input.form-control,
textarea.form-control {
  border: 1px solid #f4d8bd;      /* bordure "repos" douce */
  border-radius: 8px;
  background-color: none !important;
}

/* Focus : couleur de ta charte, sans glow bleu */
input.form-control:focus,
textarea.form-control:focus {
  border-color: #e68a52 !important; /* ou var(--primary-strong) si tu préfères */
  box-shadow: none !important;
  outline: none !important;
}

