
/* contact form */


.contact-form {
	width: 100%;
	display: block;
	max-width: 1400px;
	margin: 0 auto;
	/*background: rgba(255,255,255,.85);*/
	background: rgba(169,169,169,.2);
	/*box-shadow: 0px 3px 15px rgba(0,0,0,0.1)!important;*/
}

.contact-form h4 {
	display: block;
	margin: 1em 0;
	text-align: center;
	width: 100%;
}

.contact-form p {
    display: block;
    color: #000;
}

.contact-form p .fas {
	margin-right: 7px;
}

.contact-form p span.fa {
	color: #000;
	font-size: 12px;
	line-height: 30px;
}

.contact-form p a {
	text-decoration: none;
	color: #000;
}

.formfield a#email {
	color: #000;
	text-decoration: underline;
}

.formfield a#email:hover {
	text-decoration: none;
}

#formpage {display: flex; flex-wrap: wrap; align-items: center; vertical-align:top; margin: 0 auto; font-family: 'Roboto', sans-serif; padding: 40px;}

#formpage div {
	vertical-align:top;
	padding: 2px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}

#formpage input {
	padding:10px;
	border:1px solid #dadada;
	font-size:14px;
	background:#fff;
	border-radius: 5px;
	width: 100%;
	font-family: 'Roboto', sans-serif;
}

#formpage textarea {
	padding:10px;
	border:1px solid #dadada;
	color:#000;
	font-size:16px;
	background:#fff;
	border-radius: 5px;
	font-family: 'Roboto', sans-serif;
}

#formpage textarea:active, #formpage textarea:focus {
	background: #fff;
}

/* selects have similar styles to input & textarea fields, but with no padding. Text in a dropdown select is positioned differently */
#formpage select {
	border:1px solid #dadada;
	color:#000;
	vertical-align:middle;
	border-radius: 5px;
	padding:10px;
	width:100%;
	font-family: 'Roboto', sans-serif;
}

.formfield.full {width: calc(100% - .5em);}

.formfield {
	width: calc(50% - .5em); 
	margin: .25em;
	font-size: 14.5px;
	line-height: 2;
}

.formfield span.fas, .textbox span.fas {
	float: right;
	color: #000!important;
	font-size: 10px;
	line-height: 20px;
}
 
#formpage input.larger  {
    width:100%;
}

#formpage textarea {
    width:100%;
    height:150px;
	border-radius: 5px;
}

#formpage input.checkbox {
    padding:0; 
    border:0;
    margin:0 5px 0 15px;
    width:15px;
    height:15px;
    display:inline;
    background-color:#fff;
	color:black;
	text-transform:uppercase;
 }


#formpage input.radio {
    padding:0; 
    border:0;
    margin:0 5px 0 0;
    width:15px;
    height:15px;
    display:inline;
	
 }
#formpage .textbox {display: inline-block; width: 100%; text-align: left;}

#formpage .textbox .fas {
	color: #000;
}

/* focus states of various types of fields */
#formpage input:focus,
#formpage textarea:focus,
#formpage select:focus {
	background:#fff; 
	border:1px solid #abacac;
	outline-style:none;
}

#formpage input.radio:focus,
#formpage input.checkbox:focus {
	background:none; 
	border:0;
	outline-style:none;
}

#formpage input.button,
#formpage input.button:focus {
	width: 100%;
    max-width: 333px;
	display: inline-block;
    line-height:22px;
    color:#fff;
	background: #000; 
	padding: 10px 0px;
	margin: 0 auto;
	font-size: 16px;
	text-decoration:none; 
	text-transform: uppercase;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: 1px;
	transform: none!important;
}

#formpage input.button:hover {
	display: inline-block;
    background: #ffff02; 
    color:#000;
	cursor: pointer;
	text-decoration:none; 
	text-transform: uppercase;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    transition: all .45s ease;}

/* for plain text next to an input field, if not using a table structure */
#formpage label.basic {
    color:#212121;
    font-size:13px;
    text-align:left;
} 

/*control the Captcha */
#formpage .captcha .CaptchaWhatsThisPanel a {text-align: center !important; margin-top: 10px;}
.captcha {width: 100%;}
.CaptchaPanel {margin:0 auto !important;padding:0 0 0 0 !important;line-height:normal !important;color:#000;width: 100%; max-width: 333px; text-align: center;}

.CaptchaImagePanel {
margin: 0 auto;	
text-align: center !important;	
margin-top: 10px;
padding:0 0 0 0;
}

.CaptchaMessagePanel {
padding:0 0 0 0 !important;
margin:0 0 0 0 !important;
font-weight:normal !important;
font-size:12px;
line-height:22px!important;
text-align: center;
}

.CaptchaAnswerPanel {
margin:0 0 0 0;
padding:2px 0px 2px 0px !important;
}

.CaptchaWhatsThisPanel {
	line-height:0;
	margin:0 0 10px 0;
	padding:10px 0 10px 0 !important;
}

.CaptchaWhatsThisPanel a {color:#000; text-align: center !important; border: none;}

.CaptchaWhatsThisPanel a:hover {text-decoration:none; background: none; color: #000;} 


/******************** MEDIA QUERIES 
***************************************/

@media screen and (max-width: 785px) {
	#formpage {padding: 20px;}
	.contact-form p {font-size: 14px; line-height: 24px;}
	.formfield {width: 100%; float: none;}
	.contact-form #formpage h3 {font-size: 16px!important;}
	.CaptchaPanel {width: 100%;}
}

