/* ============================================================
   RESERVATION — styles communs aux formulaires QDLG
   Garder ce fichier limite aux composants vraiment partages.
   Les mises en page restent dans les CSS propres a chaque formulaire.
   ============================================================ */

/* Secours sans logiciel de mail : copier le message + adresse en clair */
.btn-copy {
  display: inline-flex; align-items: center; justify-content: center;
  font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
  color: var(--rouge); background: #fff;
  border: 1px solid var(--bord); border-radius: var(--r-md);
  transition: background .18s, border-color .18s;
}
.btn-copy:hover { background: var(--rouge-lt); border-color: var(--rouge); }
.btn-copy:focus-visible { outline: 2px solid var(--or); outline-offset: 2px; }

.send-alt { margin-top: .6rem; font-size: .8rem; color: var(--texte-2); line-height: 1.45; }
.send-alt a { color: var(--rouge); font-weight: 600; }

/* Honeypot anti-bot : invisible pour les humains, mais rempli par les robots */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
