.map img {
  border-radius: 20px;
}
form {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 500px;
  gap: 15px;
}
form input[type="email"],
form input[type="text"],
form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
form textarea {
  min-height: 120px;
  resize: vertical;
}
form label {
  text-align: center;
  font-weight: 700;
  margin-bottom: -10px;
  border-radius: 10px;
  background-color: #f2e1c1;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.page-home form {
  max-width: 500px;
  margin: 0 auto;
}
