﻿/*
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!
*/
.Title{
  font-size: 13pt; 
  color: #7a6843; 
  font-weight: 700;

}


.contactus .Formlabel{
  font-size: 12pt; 
  color: #7a6843; 
  font-weight: 700;
}



.contactus input[type="text"],textarea
{
  line-height:140%;
  color : #000; 
  padding : 3px; 
  border : 1px solid #999;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
     font-size: 14px;
}


.contactus textarea
{
    height:150px;
    width:60%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;  
    font-size: 14px;
}

.contactus input[type="text"]:focus,textarea:focus
{
  color : #333;
  border : 1px solid #977226;
  background-color : #efeae1;
  font-size: 16px;
}



.contactus textarea:focus
{
  color : #333;
  border : 1px solid #977226;
  background-color : #efeae1;
  font-size: 16px;
}

.contactus h5{
     font-size: 16px;
     font-weight: 600;
       color: #7a6843; 
}
.contactus hr{
       margin:0;
        padding: 0;
}

.contactus p{
    font-size: 14px;
    font-weight: 600;
    color: #7a6843; 
}

