/* Lowers font-size to make it on a single line (page nos tatoueurs) */
div.singleLine18 span {
  font-size: 18px !important;
}

div.singleLine20 span {
  font-size: 20px !important;
}

/* contact form */
.contactForm {
  text-align: right !important;
}

.contactForm label {
  display: inline !important;
  color: white !important;
}

.contactForm p {
  display: flex;
  align-items: center;
  gap: 15px; /* espace entre label et champ */
  margin-bottom: 12px;
}

.contactForm label {
  width: 180px; /* largeur fixe du label */
  text-align: right; /* ton choix initial */
  color: white;
}

.contactForm input,
.contactForm textarea,
.contactForm select {
  flex: 1; /* le champ prend toute la place restante */
}

/* Le paragraphe qui contient le bouton */
.contactForm p:last-of-type {
  display: flex;
  justify-content: flex-end; /* bouton à droite */
  margin-top: 10px;
}

/* Bouton compact */
.contactForm .wpcf7-submit {
  flex: 0 0 auto !important;
  width: 200px !important;
}

