body {
  min-height: 100vh;
}

section {
  width: 70%;
  margin-top: clamp(72px, 5vw, 145px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(0px, 10vw, 140px);
}

section h4 {
  font-size: clamp(18px, 2vw, 25px);
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  text-align: left;
}

#contact-form {
  width: 100%;
  display: block;
  margin-top: 30px;
}

#contact-form div:first-child {
  display: flex;
  justify-content: space-between;
}

#contact-form div:first-child .field-box {
  width: 48%;
}

.field-box {
  display: flex;
  flex-direction: column;
}

.field-box:not(#contact-form div:nth-child(3)) {
  margin-bottom: clamp(20px, 5vw, 50px);
}

.field-box label {
  margin-bottom: 10px;
}

.field-box input {
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid black;
  font-size: clamp(15px, 3vw, 21px);
}

.field-box textarea {
  background-color: transparent;
  width: 100%;
  height: 100px;
  outline: none;
  border: 1px solid black;
  font-size: clamp(17px, 3vw, 21px);
}

#contact-form button {
  width: 100%;
  color: rgb(121, 120, 120);
  background-color: black;
  font-size: clamp(17px, 3vw, 21px);
  margin: clamp(20px, 5vw, 30px) 0;
  padding: 10px 0;
  border-radius: 20px;
  border: 0;

  transition: box-shadow ease-in-out 0.3s, color ease-in-out 0.3s;
}

#contact-form button:hover {
  color: wheat;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

#contact-form button:focus {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 1024px) {
  #contact-form div:first-child {
    flex-direction: column;
  }

  #contact-form div:first-child .field-box {
    width: 100%;
  }
}

@media screen and (max-width: 594px) {
  section {
    width: 100%;
  }
}
