section.top {
  padding-bottom: 150px;
  background-size: 100% 100%;
}

.content {
  background: white;
  width: 1400px;
  margin: 100px auto;
  max-width: 90%;
  border-radius: 100px;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.radio-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.radio-group label {
  color: #333333;
}

h1 {
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  color: #e8423c;
}

form {
  width: 700px;
  max-width: 90%;
  margin: 50px auto;
}
form .radio-group label {
  display: inline;
}
form .radio-group input {
  width: auto;
}
form label {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
form label .required {
  background: #e8423c;
  color: white;
  font-size: 13px;
  padding: 2.5px 5px;
  display: inline-block;
  margin-left: 10px;
  line-height: 100%;
}
form input,
form textarea {
  width: 100%;
  border: 0;
  background: #f2f2f2;
  font-size: 18px;
  padding: 10px 20px;
  margin-bottom: 30px;
}

.more button {
  display: block;
  margin: 50px auto;
  background: #e8423c;
  border: 0;
  width: 250px;
  max-width: 90%;
  padding: 13px 0px;
  color: white;
  font-size: 20px;
  border-radius: 9999px;
  cursor: pointer;
}
.more button:hover {
  transform: scale(1.02, 1.02);
}

@media (max-width: 700px) {
  section.top {
    padding-bottom: 0px;
  }
  .content {
    border-radius: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .radio-group {
    margin: 0 auto;
    gap: 10px;
    margin-bottom: 30px;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
  }
  .radio-group input {
    margin-bottom: 10px;
  }
  form label {
    font-size: 16px;
  }
  form input {
    font-size: 15px;
  }
  form textarea {
    font-size: 15px;
  }
}/*# sourceMappingURL=contact.css.map */