﻿body {
  font-family: Verdana, Arial;
  font-size:18px;
}

.borderedForm {
  border-color: black;
  border-style: solid;
  border-width: 1px;
  background-color: lightgoldenrodyellow;
  max-width:500px;
}
form {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
}

  form > * {
    margin-top: 5px;
    font-size:inherit;
  }

input.formInputClass, .formTextAreaClass {
  margin-right: 10px;
  width:100%;
  display:table;
}

.formTextAreaClass {
  height: 200px;
  resize: none;
}

.formInputClass {
  font-weight: bold;
}

.formButtonClass {
  font-weight: bold;
  margin-top:20px;
    font-size:inherit;
}

  .formButtonClass[type=submit] {
    background-color: lightgreen;
  }

  .formButtonClass[type=reset] {
    background-color: red;
  }
