.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Champs */
input.form-control,
textarea.form-control,
select.form-control {
  width: 100%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  border: 1px solid #444;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 15px;
}

/* Zone de texte */
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Labels */
label {
  display: block;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

/* Bouton submit */
.wpcf7-submit {
  background: #5a43f1;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: bold;
}

.wpcf7-submit:hover {
  background: #3223b0;
}