/* Center the text in each label */
form label {
  display: block;
  margin-bottom: 10px;  /* space between this label and the next one */
  text-align: center;
}

/* Optional: make inputs centered as well */
form input, form textarea {
  display: block;
  margin: 0 auto;          /* Centers the input horizontally */
  width: 80%;              /* Optional width */
  padding: 8px;
  font-size: 1rem;
}

/* Center the button */
form button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  font-size: 1rem;
}

form input,
form textarea {
  display: block;
  width: 80%;
  margin: 4px auto 0 auto;  /* top margin = 4px (half a line) */
  padding: 10px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Rounded submit button */
form button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 12px;  /* <-- curve the button */
  border: none;          /* optional: remove default border */
  background-color: #4CAF50;  /* optional: green button */
  color: white;               /* optional: white text */
  cursor: pointer;
}

/* Optional: hover effect for button */
form button:hover {
  background-color: #45a049;
}

#map {
    display: flex;
    align-items: center;
}