form {
	font-family: 'Barlow', sans-serif;
	margin-top: 24px;
	margin-bottom: 24px;
}

textarea,
input.text,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="submit"],
.input-checkbox {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}

:focus {
	outline: none !important;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"] {
	width: 100%;
	margin-bottom: 16px;
	padding: 14px 20px;
	color: #555555;
	font-size: 15px;
	display: inline-block;
 	border: 1px solid lightgray;
}

textarea {
	margin-bottom: 16px;
	padding: 14px 20px;
	width: 100%;
	color: #555555;
	font-size: 15px;
 	border: 1px solid lightgray;
}

input[type=submit] {
	width: 100%;
	background-color: #4CAF50;
	padding: 14px 20px;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

input[type=submit]:hover {
	background-color: #45a049;
}

.g-recaptcha {
	margin-bottom: 20px;	
}
	
::placeholder {
	color: #7B7B7B;
}

.hide {
	display: none;
}