/* general styling for all pages */
body{
	max-width:1280px;
	margin: 10px auto;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}



/* styling for index.html page */
#wrapper{
	max-width:600px;
	margin: 0 auto;
	padding:10px;
}

.section-title{
	font-family: 'Arial', sans-serif;
	font-size: 48px;
	width:100%;
	text-align:center;
	border-bottom: 1px solid black;
	color: #000000;
}

.message{
	color: #7b2e00;
	font-weight: 700;
}

form{
	
}

.form_elem {
	margin: 15px 0;
}

.desc{
	display: inline-block;
	width: 100%;
	max-width: 70px;
	margin-right: 10px;
	font-size: 12px;
	font-weight: 700;
}

input, button, textarea{
	border-radius: 5px;
}

input, textarea{
	width:70%;
	max-width: 500px;
	float:right;
	padding: 7px;
	border: 1px solid #d5c68a;
	border-radius: 5px;
	outline: 0;
}

#submit-btn{
	float:right;
	clear:both;
	margin-top:20px;
	display: block;
	padding: 5px 15px;
	background-color: #7b2e00;
	color: #ffffff;
	border: 1px solid #7b2e00;
	border-radius: 5px;
	outline: 0;
	cursor: pointer;
}

#submit-btn:hover {
	background: #ffffff;
	color: #7b2e00;
}


#nameEmpty, #lastnameEmpty, #emailEmpty, #subjectEmpty, #bodyEmpty, #emailInvalid{
	
	width:100%;
	clear:both;
	text-align:center;
	color: #7b2e00;
	font-size: 12px;
	font-weight: 700;
	display:none;
}

/* styling for submissions page */
table{
	width:100%;
	border: 2px solid black;
	border-spacing: 0;
}

td, th{
	width:20%;
	margin:0;
	padding:0;
	text-align:center;
	border:1px solid black;
}

th{
	border-bottom: 2px solid black;	
}

.first{
	width:10%;
}

.last{
	width:30%;
}


