html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #FFFFFF;
  /*vertical-align: baseline;*/
}

html { height: 100%; }

form {
margin-right: auto;
margin-left: auto;
  margin: center; /* 0 auto*/
  max-width: 850px;
  padding: 20px 10px;
  background-color: #ff3600; /*#000000*/
}

form:after {
  content: "";
  display: block;
  clear: both;
}

.input {
  float: left;
  width: 48%;
  padding: 0 1% 20px;
  position: relative;
  color: #000000;
}

.input.txt { width: 98%; }

.input label {
  display: block;
  padding-bottom: 5px;

}

.input label.error {
  position: absolute;
  right: 18px;
  top: 35px;
  color: #f00;
}

.input input,
.input textarea {
  padding-top: 10px;
  padding-bottom: 9px;
  border: none;
  font-size: 16px;
  font-weight: 100;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  color: #000000;
}

.input input {
  width: 94%;
  padding-left: 3%;
  padding-right: 3%;
}

.input textarea {
  width: 95.2%;
  padding-left: 1.5%;
  padding-right: 1.5%;
}

.buttons {
  clear: both;
  margin: 0 1%;
  padding-top: 20px;

}

.buttons input[type="submit"] {
margin-right: 54px;
  float: right;
  border: none;
  height: 37px;
  line-height: 1;
  font-size: 18px;
  padding: 0 15px;
  cursor: pointer;
  color: #fff;
  background-color: #cc0000;
  transition: all 300ms ease-in-out;
}

.buttons input[type="submit"]:hover {
  color: #888;
  background-color: #ff3600;
}

.form-message {
  float: left;
  padding-top: 5px;
  color: #888;
  opacity: 0;
  transition: all 400ms ease-in-out;
}

.form-message.success {
  color: green;
  opacity: 1;
}

.form-message.error {
  color: red;
  opacity: 1;
}

@media screen and (max-width: 520px) {
  .input {
    width: 98%;
  }

  .form-message {
    width: 260px;
  }
}
