form {
	width: 100%;
}
input[type="text"] {
	width: 100%;
	padding: 10px;
	border: #E5E5E5 1px solid;
	border-radius: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-appearance: none;
	font-size: 16px;
	font-weight: 300;
}
textarea {
	width: 100%;
	padding: 10px;
	border: #E5E5E5 1px solid;
	border-radius: 0;
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
	-webkit-appearance: none;
	font-size: 16px;
	font-weight: 300;
}
textarea:focus, input:focus {
    outline: none;
	border: #FF0020 1px solid;
	box-shadow: none;
	-webkit-box-shadow: none;
}
input[type="submit"], input[type="reset"] {
	background-color: #E7001D;
	margin: 20px 10px 20px 0;
	padding: 10px 15px;
	border: none;
    border-radius: 0;
	-webkit-appearance: none;
	color: #FFF;
	font-size: 0.938em;
}
input[type="submit"]:hover, input[type="reset"]:hover {
	background-color: #FF0020;
}