form {
	margin: 1em 0;
	width: 100%;
}




input[type="text"], input[type="email"], input[type="tel"] {
	width: 100%;
  margin-bottom: .5em;
	padding: 1em;
	background-color: #f3f4f5;
	color: #222;
	font-size: 1em;
	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;
	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;
}





::-webkit-input-placeholder {
	color: gray;
}
:-moz-placeholder {
	color: gray;
	opacity: 1;
}
::-moz-placeholder {
	color: gray;
	opacity: 1;
}
:-ms-input-placeholder {
	color: gray;
}
::-ms-input-placeholder {
	color: gray;
}




input[type="submit"] {
	margin-top: 1em;
	padding: 1em;
	width: 100%;
	background-color: #005599;
	font-size: 16px;
  color: white;
	border: none;
	border-radius: 0;
}
input[type="submit"]:hover, input[type="reset"]:hover {
	background-color: #004488;
	color: #33bbdd;
	transition: all 0.3s ease 0s;
}
.hide {
	display: none;
}