.header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  height: 21vh;
  align-content: center;
  width: 100vw;
}

.backarrow {
  margin-left: 6vw;
  margin-top: 4vh;
  font-size: 40px;
  color: #8d6c98;
  text-decoration: none;
  font-weight: lighter;
  font-family: "PP Neue Montreal", serif;
  transition: 0.35s;
}
.backarrow:hover {
  color: #D9D9D9;
  transition: 0.35s;
}

.form {
  width: 40vw;
  align-self: center;
  max-width: 800px;
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 4.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 1rem;
  font-size: large;
  color: #D9D9D9;
  font-family: "PP Neue Montreal", serif;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  background-color: rgb(32, 13, 0);
  border: 1px solid #D9D9D9;
  color: #D9D9D9;
  display: flex;
  height: 2.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: "PP Neue Montreal", serif;
  line-height: 1.25rem;
  margin-bottom: 1.5rem;
  outline: none;
  width: 100%;
}

.form-textarea{
  margin-bottom: 0.5rem;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 17%;
  margin-top: 1.2rem;
  background-color: #795c81;
  color: #D9D9D9;
  padding: 10px 5px;
  border-radius: 0.375rem;
  border: none;
  float: right;
  min-width: 80px;
  cursor: pointer;
}