@import url(http://fonts.googleapis.com/css?family=Fauna+One|Muli);
#mainform{
    width:100%;
    margin:20px auto;
    padding-top:20px; border-radius:5px; box-shadow:0 0 5px;  margin:20px 25px 0 50px;
}


#form{
    border-radius:2px;
    padding:5px 10px;
    box-shadow:0 0 1px;
    font-size:12px;
    font-weight:normal;
    width:100%;
    margin:0px 25px 0 5px;
    float:left;

}

/*h3{
    text-align:center;
    font-size:20px;
}
*/
input{
    width:70%;
    height:30px;
    margin-top:5px;
    border:1px solid #999;
    border-radius:3px;
    padding:5px;
}	

input[type=button]{
    background-color:#0073bc;
    border:1px solid white;
    font-Weight:bold;
    font-size:15px;
    color:white;
}

textarea{
    width:60%;
    height:80px;
    margin-top:5px;
    border-radius:3px;
    padding:5px;
    resize:none;
}

.redstar{
    color:red;
}

#note{
color:black;
font-Weight:400;
}

#returnmessage{
    font-size:14px;
    color:green;
    text-align:center;
}

input#submitbutton{
width:30%; 
cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
padding:0px 50px; /*add some padding to the inside of the button*/
margin: 5px 0 10px 55px;
background:#c81114; /*the colour of the button*/
border:1px solid #a60f11; /*required or the default border for the browser will appear*/
/*give the button curved corners, alter the size as required*/
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 5px;
/*give the button a drop shadow*/
-webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
box-shadow: 0 0 4px rgba(0,0,0, .75);
/*style the text*/
color:#f3f3f3;
font-size:1.1em;
}

 input#submitbutton:hover, input#gobutton:focus{
background-color :#e62023; /*make the background a little darker*/
color:#fff;
/*reduce the drop shadow size to give a pushed button effect*/
-webkit-box-shadow: 0 0 1px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 1px rgba(0,0,0, .75);
box-shadow: 0 0 1px rgba(0,0,0, .75);
}