input,
textarea {
	width: 100%;
	font-family: 'Arial';
	font-size: 16px;
	color: #000;
	background: #fff;
	border: 2px solid #fff;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 0 20px;
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: default-button;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.error {
	border-color: red;
}

input {
	height: 55px;
}

@media(max-width: 991px) {
	input {
		padding: 0 15px;
	}
}

textarea {
	height: 180px;
	line-height: 1.6;
	padding-top: 20px;
}

@media(max-width: 991px) {
	textarea {
		height: 160px;
		padding-left: 15px;
		padding-top: 15px;
	}
}

input:placeholder {
	font-family: 'Arial';
	font-size: 16px;
	color: #342c26;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-family: 'Arial';
	font-size: 16px;
	color: #342c26;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	font-family: 'Arial';
	font-size: 16px;
	color: #342c26;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	font-family: 'Arial';
	font-size: 16px;
	color: #342c26;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	font-family: 'Arial';
	font-size: 16px;
	color: #342c26;
}

form h6 {
	padding-bottom: 20px;
}

input[type="submit"], button {
	border: 0;
}