body {
  color: #0b044b;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column; /* Organiser les éléments de la page de haut en bas */
  height: 100vh; /* Prendre toute la hauteur de la fenêtre */
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  margin-top: 100px;
}

.breadcrumb a {
  color: #888686;
  text-decoration: none;
  margin: 0 5px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #888686;
}

main {
  flex: 1; /* Permet de prendre tout l'espace disponible */
  display: flex;
  justify-content: center; /* Centre le formulaire horizontalement */
  align-items: center; /* Centre le formulaire verticalement */
}

form#contactForm {
  width: 400px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

label {
  display: block;
  margin: 10px 0 5px;
}

input,
select,
button {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#map {
  width: 100%;
  height: 300px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
