body {
  font-family: Arial, sans-serif;
  background-color: white;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background-color: #c3eed8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.multiline-button {
    white-space: pre-wrap;
}

h1 {
  text-align: center;
}

img {
  display: block;
  margin: auto;
  width: 90%;
}

input[type=text], input[type=email], input[type=tel], select, textarea {
  background-color: #d6e9f8;
  width: 100%;
  padding: 12px;
  border: 1px solid #b4c9d4;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #94b2d5;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: auto;
  font-size: 1.1em; /* Multiplie par 1.1 la taille du texte */
}

input[type=submit]:hover {
  background-color: #6b8daa;
}

.form-error {
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}

#thank-you-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: #d6e9f8;
  padding: 20px;
  border: 1px solid #b4c9d4;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}
