@charset "ISO-8859-1";

.contactFormHeading
{
    font-family : sans-serif;
	font-weight : 600;
	font-size : 1.3rem;
	color : black;
}

.contactFormLegendFont
{
	display : inline-block;
    font-family : sans-serif;
	font-weight : 300;
	font-size : 1rem;
	color : black;
	margin-top : 18px;
	margin-right : 5px;

}

.contactInputTextSingleLine 
{
    font-family : sans-serif;	
	display : inline-block;
	width : 100%;
	height : 36px;
	background-color : #ffffff;
	border : 1px solid #e6e6e6;
	outline : none;
	padding : 13px;
	font-size : 1rem;
	font-weight : 500;
	color : #787878;
	border-radius : 2px;
	margin-top : 10px;
}

.contactInputTextMultiLine
{
    font-family : sans-serif;	
	display : inline-block;
	width : 100%;
	height : 150px;
	background-color : #ffffff;
	border : 1px solid #e6e6e6;
	margin : 0px;
	padding : 7px 0px 0px 13px;
	font-size : 1rem;
	font-weight : 500;	
	color : #787878;
	resize : none;
	outline : none;	
	vertical-align : center;
	border-radius : 2px;
	margin-top : 10px;    
	margin-bottom : 7px;	
}



.contactFormActionButton
{
	display : inline-block;
	background-color : #00c600;
	color : #ffffff;
    font-size: 1rem;
    font-weight: 400;
    line-height : 1rem;    
    text-align : center;
    border-radius : 2px;
    padding : 10px 21px 10px 21px;
    box-shadow: 1px 1px 3px 1px #a3a3a3;
}

.contactFormActionButton:hover
{
	background-color : #00a600;
	color : white;
    cursor : pointer;
    box-shadow : none;
}






