/* Formulaire de contact uniquement : aucune modification des autres pages. */
.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  min-width: 0;
}
.contact-form label { font-weight: 600; }
.contact-form input:not([type="hidden"]),
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #c9c6c0;
  border-radius: 10px;
  background: #fff;
  color: #17191b;
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.contact-form .button { justify-self: start; margin-top: 8px; }
.contact-form .button:disabled { opacity: .55; cursor: not-allowed; }
.contact-form [role="alert"] { color: #9a291c; }
.contact-form .small-print { margin: 4px 0; }
@media (max-width: 370px) {
  .contact-form .g-recaptcha { transform: scale(.85); transform-origin: left top; }
}
