﻿body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background: url(cowses.jpg);
	background-size: cover;
}
.contact-form {
	width: 85%;
	max-width: 600px;
	background: #f1f1f1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 30px 40px;
	box-sizing: border-box;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 0 20px #000000b3;
	font-family: "Montserrat", sans-serif;
}
.contact-form h2 {
	margin-top: 0;
	font-weight: 200;
}
.contact-form h3 {
	margin-top: 0;
	font-weight: 150; 
}
.contact-form a {
    color: darkseagreen; 
}
.contact-form a:hover {
  color: peachpuff; 
}
.textbox {
	border: 1px solid gray;
	margin: 8px 0;
	padding: 12px 18px;
	border-radius: 8px;
}
.radio {
	border: 1px solid gray;
	margin: 8px 0;
	padding: 12px 18px;
	border-radius: 8px;
	text-align: left;
}
.textbox label {
	display: block;
	text-align: left;
	color: #333;
	text-transform: uppercase;
	font-size: 14px;
}
.radio label {
	text-align: left;
	color: #333;
	text-transform: uppercase;
	font-size: 14px;
}
.textbox input {
	width: 100%;
	border: none;
	background: none;
	outline: none;
	font-size: 18px;
	margin-top: 6px;
}
.textbox textarea {
	width: 100%;
	border: none;
	background: none;
	outline: none;
	font-size: 18px;
	margin-top: 6px;
}
.submit-button {
	display: inline-block;
	background: #f0932b;
	padding: 14px 0;
	color: white;
	font-size: 18px;
	text-transform: uppercase;
	cursor: pointer;
	margin-top: 8px;
	width: 100%;
	border-radius: 8px;
}
.g-recaptcha {
	margin: 10px 20px;
	width: 100%;
}
.status {
	font-size: 15px;
	color: #6ab04c;
	padding: 15px;
}
.status span {
	color: #eb4d4b;
}
