/* Conteneur CF7 */
.wpcf7 form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Labels */
.wpcf7 form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* Champs texte */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  border-color: #0057ff;
  box-shadow: 0 0 0 3px rgba(0,87,255,0.15);
  outline: none;
}

/* Bouton */
.wpcf7 input[type="submit"] {
  background: #0057ff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* Hover bouton */
.wpcf7 input[type="submit"]:hover {
  background: #003fcc;
  transform: translateY(-2px);
}

/* Messages CF7 */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 15px;
  border-radius: 8px;
}
