/* Conteneur principal du formulaire */
#contact-message-projet-shooting-couple-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Espacement des blocs de champs (textes et booléens) */
#contact-message-projet-shooting-couple-form .form-item,
#contact-message-projet-shooting-couple-form .field--type-boolean {
  margin-bottom: 24px;
}

/* Amélioration visuelle des champs de saisie texte, téléphone et email */
#contact-message-projet-shooting-couple-form input[type="text"],
#contact-message-projet-shooting-couple-form input[type="tel"],
#contact-message-projet-shooting-couple-form input[type="email"] {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Structurer les blocs de cases à cocher en Flexbox (alignement horizontal de la case et du texte) */
#contact-message-projet-shooting-couple-form .field--type-boolean {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #fdfdfd;
  border: 1px dashed #e0e0e0;
  padding: 14px;
  border-radius: 6px;
}

/* Forcer la case à cocher à conserver son ratio et s'aligner proprement sur la première ligne de texte */
#contact-message-projet-shooting-couple-form .field--type-boolean input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  min-width: 16px;
  min-height: 16px;
}

/* Ajustement des labels des cases à cocher pour une lecture fluide */
#contact-message-projet-shooting-couple-form .field--type-boolean label {
  font-weight: normal;
  font-size: 0.95rem;
  line-height: 1.4;
  cursor: pointer;
  margin: 0;
}

/* Bouton d'action "Envoyer le message" aux couleurs de Declic Photography */
#contact-message-projet-shooting-couple-form .form-actions input[type="submit"] {
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

#contact-message-projet-shooting-couple-form .form-actions input[type="submit"]:hover {
  background-color: #333333;
}