body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #e8f5e9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
}

.formulaire {
  background-color: #ffffff;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  justify-content: center;
}

h2 {
  text-align: center;
  color: #333;
  padding: 0;
}

label {
 
  color: #444;
}

input{
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  border-radius: 15px;
}
textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 15px;
  font-size: 14px;
  min-height: 20px;
  margin-top: 5px;
  resize: horizontal;
}
select {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.objet .radios {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 5px;
}

button {
  margin-top: 20px;
  padding: 12px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #43a047;
}
.objet{
  margin: 15px;
}
textarea{
  resize: vertical;
  
}
