* {
	box-sizing: border-box;
}

#contactForm a {
	color: inherit !important;
	text-decoration: underline;
}

#contactForm {
	width: 100%;
	text-align: left !important;
	padding: 10px;
}

#contactForm h2 {
	text-align: left;
}

#inquiryMessage,
#contactForm > input,
#contactForm > textarea {
	border: none;
	width: 100%;
	margin: 10px 0;
	padding: 10px;
	box-sizing: border-box;
}

#contactForm > input,
#contactForm > textarea {
	background-color: #EBEBEB;
	font-family: inherit !important;
}

#submitInquiry {
	margin: 10px 0 20px;
	text-align: center !important;
}

#success, #warning, #failure {
	width: 100%;
	display: none;
	padding: 10px;
	font-size: 14px;
}

#success {
	border: 1px solid #00B050;
	border-left: 5px solid #00B050;
	background-color: rgba(112, 173, 71, 0.25);
}

#warning {
	border: 1px solid #FFC000;
	border-left: 5px solid #FFC000;
	background-color: rgba(255, 192, 0, 0.25);
}

#failure {
	border: 1px solid #F40000;
	border-left: 5px solid #F40000;
	background-color: rgba(244, 0, 0, 0.25);
}

#failure a {
	color: inherit !important;
	text-decoration: underline;
}

@media only screen and (min-width: 768px) {
	#contactForm {
		width: 400px;
		margin: 0 auto;
		padding: 0;
	}
}