form {
	margin: 2em 0;
	width: 100%;
}
input[type="text"], input[type="email"], input[type="tel"] {
  margin-bottom: 1em;
	padding: 1em;
	width: 100%;
	background-color: white;
	color: #151515;
	font-size: 16px;
	border: none;
  border-radius: 0;
	box-shadow: none;
  outline: none;
  -webkit-appearance: none;
}
textarea {
	padding: 1em;
	width: 100%;
	background-color: white;
	color: #151515;
	font-size: 16px;
	border: none;
  border-radius: 0;
	box-shadow: none;
  outline: none;
  -webkit-appearance: none;
}
input[type="submit"] {
  margin-top: 2em;
	padding: 1em;
	width: 100%;
	background-color: #232323;
  color: #ebebeb;
	font-size: 1em;
  text-transform: uppercase;
	text-decoration: none;
	border: none;
  border-radius: 0;
	box-shadow: none;
  -webkit-appearance: none;
}
input[type="submit"]:hover, input[type="reset"]:hover {
	background-color: #181818;
	transition: all 0.3s ease 0s;
}
.hide {
	display: none;
}