form {
	margin: 20px 0;
	width: 100%;
}
form label {
	padding-top: 20px;
	padding-bottom: 10px;
	text-transform: uppercase;
	display: block;
}
input[type="text"], input[type="email"], input[type="tel"] {
	padding: 18px;
	width: 100%;
	background: #F3F3F3;
	color: #000;
	font-size: 16px;
	letter-spacing: .5px;
	border: none;
	border-radius: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-appearance: none;
}
textarea {
	padding: 18px;
	width: 100%;
	background: #F3F3F3;
	color: #000;
	font-size: 16px;
	letter-spacing: .5px;
	border: none;
	border-radius: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-appearance: none;
}
textarea:focus, input:focus{
	outline: none;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}
input[type="submit"] {
	margin-top: 30px;
	padding: 18px;
	width: 100%;
	background: #EFEFEF;
	font-size: 1em;
	letter-spacing: .5px;
	text-decoration: none;
	border: none;
	border-radius: 0;
}
input[type="submit"]:hover, input[type="reset"]:hover {
	background: #F5F5F5;
	color: #58197F;
	transition: all 0.3s ease 0s;
}
.hide {
	display: none;
}