/*
Theme Name: Divi Child
Template: Divi
Author: Jonathan
Description: Thème enfant pour modifications personnalisées.
Version: 1.0
*/
body, input, textarea, select, button {
  font-family: 'Poppins', sans-serif;
}

.form-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.form-wrapper h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.required {
  color: red;
  margin-left: 4px;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  background: #fff;
}

button {
  background: #222;
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #444;
}
