*{
  box-sizing: border-box;
}

.form_back  {
   background-color: #f1f1f1;
   width: 100%;
}
.form_center {
  color: black;
  margin: auto;
  width: 70%;
  padding: 10px;
}

input[type=text], input[type=email], input[type=number], input[type=textarea], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit], input[type=reset] {
  width: 49.7%;
  background-color: #a0a0a0;
  color: black;
  font-size: 22px;
  padding: 12px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 0px;
  cursor: pointer;
}

 
input[type=submit]:hover {
  background-color: #86af00;
  color: white;
}
input[type=reset]:hover {
  background-color: #86af00;
  color: white;
}
textarea {
  width: 100%;
  height: 250px;
  padding: 12px 20px;
  margin: 8px 0px;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: 4px;
  resize: none;
}

.div {
  border-radius: 0px;
  color: black;
  background-color: #f2f2f2;
  padding: 20px;
  justify: center;
}


.legend_style {
  font-size: 25px;
}

#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.75) url(images/loading2.gif) no-repeat center center;
  z-index: 10000;
}