.form #sendmessage {
  color: #974B00;
  border: 1px solid #974B00;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.form #sendmessage.show, .form #errormessage.show, .form .show {
  display: block;
}

.form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

.form input, .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.form button[type="submit"] {
  background: #B98947;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.form button[type="submit"]:hover {
  background: #343b40;
}