form {
	margin: 2em 0;
	width: 100%;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
	background-color: #f5f5f5;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-appearance: none;
	border: none;
	border-radius: 0;
	margin-bottom: 10px;
	padding: 15px;
	width: 100%;
	color: black;
	font-size: 16px;
}
input:focus, textarea:focus {
	outline: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border: none;
	border-radius: 0;
}
input[type="submit"] {
	background-color: #ffc019;
	border: none;
	border-radius: 0;
	margin-top: 2em;
	padding: 15px;
	width: 100%;
	color: white;
	font-size: 1em;
	letter-spacing: .5px;
}
input[type="submit"]:hover, input[type="reset"]:hover {
	background-color: #e5a600;
	color: white;
	text-decoration: none;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.hide {
	display: none;
}