
body {
  font-family: "Instrument Sans", sans-serif;
}


#contactForm {
  padding: 16px 0;
}

.contact__input-double {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.contact__input-wrapper {
  display: block;
  padding: 8px 0px;
}

.contact__input-wrapper label,
.contact__input-wrapper input {
  display: block;
  width: 100%;
}

.contact__input-wrapper input {
  margin-top: 8px;
  border: 1.5px solid black;
  height: 24px;
}

.w-50 {
  width: 50%;
}

.title {
  font-size: 24px;
  font-weight: 400;
}

.contact__button-wrapper {
  margin: 16px 0;
}

.contact__button-wrapper button {
  font-size: 16px;
  padding: 8px 24px;
  background-color: white;
  border: 1.5px solid black;
  outline: none;
  cursor: pointer;
}

.contact__button-wrapper button:hover {
  background-color: black;
  color: white;
}