body.page-formulaire {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #F3F4F6;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.form-container {
  background-color: #FFFFFF;
  color: #374151;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 450px;
  max-width: 95%; /* pour éviter de dépasser sur petits écrans */
  box-sizing: border-box;
}

.form-container h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

h2 
{
  color: #A9957B; 
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

input[type="text"],
select,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: none;
  box-sizing: border-box;
  font-size: 14px;
}

textarea {
  resize: none;
}

.civilite {
  margin-top: 5px;
  margin-bottom: 15px;
}

.civilite label {
  margin-right: 15px;
  font-weight: normal;
}

input[type="submit"] {
  width: 100%;
  background-color: #A9957B;
  color: #000000;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #c3a175;
}

.bouton-retour {
  display: block;
  text-align: center;
  margin-top: 20px;
  background-color: #A9957B;
  color: #000000;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.bouton-retour:hover {
  background-color: #c3a175;
}

/* --- Version mobile --- */
@media (max-width: 600px) {
  body.page-formulaire {
    padding: 10px;
  }

  .form-container {
    width: 100%;
    padding: 20px;
  }

  input[type="text"],
  select,
  textarea {
    font-size: 16px;
  }

  input[type="submit"] {
    font-size: 18px;
    padding: 12px;
  }
}

.js{
  width: auto;
  color: #c3a175;
}