.form-content {
  order: 1;
}
form {
  width: 600px;
  max-width: 100%;
  order: 0;
}
input,
textarea {
  background: rgba(255,255,255,0.7);
  border: 1px solid #b29668;
  padding: 8px;
  border-radius: 1px;
  max-width: 100%;
}
input:focus,
textarea:focus {
  outline: none;
  border-width: 2px !important;
  padding: 7px;
  border-radius: 2px;
}
textarea {
  width: 430px;
  height: 140px;
}
label {
  text-transform: uppercase;
  font-size: 90%;
  font-weight: 600;
}
.form-field {
  margin-top: 10px;
  display: inline-block;
  margin-right: 12px;
  max-width: 100%;
}
.form-sent {
  display: inline-block;
  border: 2px solid #91c09e;
  border-radius: 3px;
  padding: 12px;
  background: rgba(145,192,158,0.2);
  color: #4a8159;
}
.form-sent h3 {
  color: inherit;
  margin-top: 0;
}
@media (min-width: 900px) {
  .form-page-container.form-aside {
    display: flex;
  }
  .form-page-container.form-aside .form-content {
    margin-left: 30px;
  }
}
