
* {
	border: 0 none;
	outline: 0;
	padding: 0;
	margin: 0;
	font-family: "Merriweather Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}

H1 {
	color: #112E51;
	font-weight: 400;
	font-size: 24px;
}

input, textarea {
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	transition: border linear 0.2s, box-shadow linear 0.2s;
	border: 1px solid #CCCCCC;
	border-radius: 3px 3px 3px 3px;
	color: #555555;
	display: inline-block;
	font-size: 15px;
	line-height: 18px;
	padding: 4px;
	vertical-align: middle;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

form {
	/*width: 90%;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 24px;
}

table {
	border-collapse: separate;
	border-spacing: 12px;
}

tr td {
	height: 25px;
	vertical-align: middle;
	font-weight: bold;
}

p {
	font-weight: bold;
}

button {
	background-color: #99824B;
	padding: 5px;
	border-radius: 5px;
	color: white;
	cursor: pointer;
	align: right;
	margin-top: 12px;
	margin-bottom: 12px;
	font-size: 18px
}

.banner-container {
	color: white;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 0.1em;
	background-image: url("banner.jpg");
	width: 100%;
}

.top-left {
	margin-left: 20%;
	padding: 40px 0 40px 0;
}

.warn {
	color:rgb(110, 30, 31);
	font-weight: normal;
}

.submit_message {
	margin: 20px auto;
	max-width: 600px;
	padding: 20px 30px;
	
	/* Rounded border */
	border: 2px solid #888;
	border-radius: 12px;
	
	/* Raised effect using box-shadow */
	box-shadow: 
		0 4px 6px rgba(0, 0, 0, 0.1),
		0 2px 4px rgba(0, 0, 0, 0.06);
	
	/* Optional: subtle background */
	background-color: #f9f9f9;
}
.submit_message.success {
	border-color: #4a7c59;
	background-color: #f0f8f4;
}

.submit_message.error {
	border-color: #c53030;
	background-color: #fff5f5;
}
