/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}
header h1 {
  font-size: 36px;
  padding-top: 100px;
  text-align: center;
}


.form-row {
  display: flex;
  /*  */
  flex-direction: column;
  margin-bottom: 20px;
  margin: 20px auto;
  width: 50%;
}

.input-field{
  display: flex;
  flex-direction: column;
  flex: 1;
}
label {
  font-weight: bold;
  margin-bottom: 5px;
}

input,
textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

button[type="submit"] {
  background-color: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #ffe4d3;
  color: black;
}

.submit-button{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media screen and (max-width: 600px) {
  .form-row{
    width: 80%;
    flex-direction: column;
  }
}