/*
Contact Form by html-form-guide.com
You can customize all the aspects of the form in this style sheet
All the style elements use form id selector(notice the #contactus). So, including this
stylesheet does not affect the other elements at all!
*/
body {
    background-color: white;
	background-image: url("contact-bg.jpg");
	opacity: 0.7;
	height: 620px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    position: relative;

}

hr { 
  border : 0;
  height: 1px; 
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)); 
}

a {
    color: green;
	text-decoration: none;
}
/* mouse over link */
a:hover {
    color: orange;
}

c {
    color: green;
	font-size:12px;
	text-decoration: none;
}
c:hover {
    color: orange;
	font-size:15px;
}

d {
    color: black;
	font-size:12px;
	text-decoration: none;
}
#contactus fieldset
{
   width:300px;
   padding:20px;
   border:1px solid #666;
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); 
background-color : #ffff;   
}

#contactus legend, h2
{
   font-family : Arial, sans-serif;
   font-size: 1.0em;
   font-weight:bold;
   color:#EB2323;
   padding : 5px;
 
}

#contactus label
{
   font-family : Arial, sans-serif;
   font-size: 15px;
   color:#cc;
   
}
#contactus input[type="file"]
{
   width:250px;
   height:30px;
   padding-left:0px;
   border : 1px solid #666;
   color : orange;
   font-size : 15px;
   
}



#contactus input[type="text"],textarea
{
	background-color: #fffff;
	color: #000;
	font-size : 16px;
	font-weight: 400;
    width: 250px;
	height:30px;
    padding: 5px 10px;
    margin: 8px 0;
    box-sizing: border-box;
	border: 1px solid #666;
    border-radius: 0px;
  
}

#contactus #scaptcha
{
  width:90px;
  height:25px;
  
}

#contactus input[type="submit"]
{
   width:100px;
   height:30px;
   padding-left:0px;
   
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
   border-radius: 5px;   
}

#contactus textarea
{
   width:250px;
   height:80px;
   
 
}

#contactus input[type="text"]:focus,textarea:focus,
{
  color : #cc;
  border : 1px solid DodgerBlue;
  background-color : #fffff;
  font-weight:normal;
}

#contactus .container
{
   margin-top:8px;
   margin-bottom: 10px;
   
}

#contactus .error
{
   font-family : Arial, sans-serif;
   font-size: 12px;
   color:red;
  
}

#contactus fieldset#antispam
{
   padding:2px;
   border-top:1px solid #EEE;
   border-left:0;
   border-right:0;
   border-bottom:0;
   width:350px;
}

#contactus fieldset#antispam legend
{
   font-family : Arial, sans-serif;
   font-size: 15px;
   font-weight:bold;
   color:#333;   
}

#contactus .short_explanation
{
   font-family : Arial, sans-serif;
   font-size: 16px;
   color:red;   
}

/* spam_trap: This input is hidden. This is here to trick the spam bots*/
#contactus .spmhidip
{
   display:none;
   width:10px;
   height:3px;
   color:red;
}
#fg_crdiv
{
   font-family : Arial, sans-serif;
   font-size: 15px;
   opacity: .2;
   -moz-opacity: .2;
   filter: alpha(opacity=20);   
}
#fg_crdiv p
{
    display:none;
}

button {
  background-color: #4CAF50;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}