form
{
    margin: 0;
    max-width: 500px;
    padding: 10px 0;       
}

label
{
    color: #5acebb;
    display: block;
    font-weight: bold;
    font-size: 13px;  
    margin: 10px 0 5px 0; 
    padding: 0;      
    width: 300px;    
}
 
input[type="text"], input[type="password"], input[type="checkbox"], textarea
{     
    background-color: #c0c0c0;
    border: 0 none;
    color: #000;  
    font-size: 13px; 
    height: 20px; 
    margin: 0 0 10px 0; 
    padding: 3px;       
    width: 300px;
    
    -moz-border-radius: 5px;
    border-radius: 5px;  
    behavior: url(PIE.htc); /* CSS3 Pie! */          
}

    input[type="text"]:focus, input[type="password"]:focus, input[type="checkbox"]:focus, textarea:focus
    {     
        background-color: #fff;       
    }

.compulsory
{
    color: #dd9632;    
}

textarea
{
    height: 200px;
    width: 500px;
}
    
input[type="submit"], input[type="button"], .submit
{
    background-color: #ba8748;
    border: 0 none;
    color: #fff;
    cursor: pointer;    
    font-size: 14px;
    height: 25px;
    letter-spacing: -1px;
    line-height: 25px;
    padding: 0 10px;
    text-transform: uppercase;
    width: auto;
    
}


    a.submit, input[type="submit"]
    {
        background-color: #a8d24e;
        border: 0 none;
        color: #000;
        font-size: 13px;
        line-height: 1em;
        padding: 5px 10px;
        text-decoration: none;
        text-transform: uppercase;
        width: auto;
        
        display: inline-block;  
        vertical-align: top;
        zoom: 1; /* for ie */
        *display: inline; /* for ie */  
        
        -moz-border-radius: 5px;
        border-radius: 5px; 
        
        behavior: url(PIE.htc); /* CSS3 Pie! */            
    }

    input[type="submit"]:hover, input[type="button"]:hover, a.submit:hover
    {
        background-color: #5acebb;  

        -webkit-transition: all 300ms ease-in-out;
        -moz-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; 
    }

input.error, textarea.error   
{
    background-color: #fff;
    border: 1px solid #dd9632; 
}

label.error
{
    display: none !important;
}

input[type="checkbox"], .checkbox
{
    border: 0 none;
    display: inline-block;
    margin-top: 3px;
    padding: 0;
    vertical-align: top;
    width: auto;
    
    /* for ie */
    zoom: 1;
    *display: inline; 
}
