body {
 margin: 0;
 padding: 40px 5%;
 background-color: #e4eced;
}
h1 {
text-align: center;
padding: 20px 0 10px;
color: #444;
}
p:not(.response) {
    color: #444;
    padding: 15px 0 0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px;
}
*,:before,:after {
	font-family: 'Lato';
	font-weight: 400;
	margin: 0;
	padding: 0;
  list-style: none;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
/* form */
.form-container {
  max-width: 400px;
  margin: 0 auto;
}
.submit input {
	outline: none;
}
.button {
  display: block;
  font-size: 17px;
  width: 100%;
  border-radius: 2px;
  color: #fff;
  height: 50px;
  margin-bottom: 20px;
  line-height: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  border: solid 1px transparent;
  transition: .3s;
  cursor: pointer;
}
.button.primary {
  background-color: #382246;
  color: #fff;
}
.input input {
	display: block;
	width: 100%;
	height: 50px;
	font-size: 15px;
	color: #343c47;
	padding-left: 11px;
	margin-bottom: 20px;
	border-radius: 3px;
	background-color: #fff;
	border: none;
	border-top: solid 2px #cccccc;
	outline: none;
	transition: .3s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.input input.err {
	border-color: #ce4e4e;
}
.input input.valid {
	border-color: #6be042;
}
.input textarea.err {
	border-color: #ce4e4e;
}
.input textarea.valid {
	border-color: #6be042;
}
.input textarea {
	display: block;
	width: 100%;
	height: 230px;
	font-size: 15px;
	padding: 15px 0 0 11px;
	margin-bottom: 20px;
	border-radius: 3px;
	background-color: #fff;
	border: none;
	border-top: solid 2px #cccccc;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.submit #submit {
	margin: 0 auto;
}
/* Placeholders */
form ::-webkit-input-placeholder {
	font-size: 15px;
	color: #9ca6ac;
}
form ::-moz-input-placeholder {
	font-size: 15px;
	color: #9ca6ac;
}
form :-moz-input-placeholder {
	font-size: 15px;
	color: #9ca6ac;
}
form :-ms-input-placeholder {
	font-size: 15px;
	color: #9ca6ac;
}
/* Response */
p.response {
	font-size: 16px!important;
	margin: 0;
	text-align: center;
  background-color: rgb(160, 33, 33);
  border-radius: 3px;
  color: #fff;
  overflow: hidden;
  height: 0;
  transition: .3s;
}
p.response.active {
	margin-bottom: 25px;
	padding: 7px 0;
	height: 39px;
}
p.response.active.success {
	background-color: #379e2c;
}