@import url(http://fonts.googleapis.com/css?family=Oswald);
@import url(http://fonts.googleapis.com/css?family=Muli:300);

h1
{
	font-family: 'Montserrat';
	font-size: 14px;
	text-transform: uppercase;
	color: #47ad4d;
	text-align: center;
}


/* Centres the page (this could be container)*/
.body {
    display:block;
    margin:0 auto;
    width:576px;
    font-family: 'Montserrat';
    font-size: 14px;
    color: #999;
}

/* Centres the form within the page */
form 
{
    margin:0 auto;
    width:470px;
}

/* Styles the text boxes */
input, text, file {
	width:250px;
	height:15px;
	background-color:#fff;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #e2d9f4;
	padding:10px;
	margin-top:3px;
	font-size:0.9em;
	color:#3a3a3a;
}

input:focus, textarea:focus {
		border:1px solid #47ad4d;
	}

/* Styles the (textarea) text boxes */
textarea {
	font-family: 'Open Sans';
    font-size: 14px;
	width:439px;
	height:110px;
	background-color:#fff;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	font-size:0.9em;
	color:#3a3a3a;
}

/* Styles the submit button */
#submit {
	/* background:url(images/submit.png); */
	color:#fff;
	width:100px;
	height:38px;
	text-align: center;
	text-indent:0px;
	border:none;
	margin-top:20px;
	cursor:pointer;
	background-color: #b39b77;
}

/* Styles the submit hover */	
#submit:hover {
	color:#ffffff;
	background-color: #000000;
	opacity:0.9;
}



