label {
  display: inline-block;
  width: 120px;
}

input {
  display: inline-block;
  width: 200px
}

textarea {
  resize: none;
  width: 99%;
  height: 250px;
}

fieldset {
  display: block;
  border-radius: 5px;
  background-color: #e4e7ef;
}

legend {
  font-weight: bold;
}

input.submit {
  color: rgb(50, 100, 200);
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin: auto;
  border: solid 1px;
}

input.submit:hover {
  background-color: beige;
}

form {
  position: static;
  display: block;
  width: 75%;
  margin: auto;
}