/*************** Reset *********************/
.formSection {
  background-color: #f0e7c8;
  margin: 3rem 15rem;
  padding: 3rem;
  border-radius: 1rem;
}

.formSection h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.formIntro {
  text-align: center;
  margin-bottom: 2rem;
}

form {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-family: "Lexend", sans-serif;
}

input:focus,
textarea:focus {
  outline: 2px solid #ffc166;
}

button {
  display: block;
  margin: 2rem auto 0;
  width: 250px;
}

/**************Responsivt*******************/
@media (max-width: 900px) {

  .formSection {
    margin: 2rem;
    padding: 2rem;
  }

}