.user_form {
	margin: 1em auto;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	max-width: 810px;
}
.user_form > div {
	flex: 1 1 50%;
	position: relative;
	padding: 4px;
	box-sizing: border-box;
	min-width: 300px;
}
.user_form > div.full {
	flex: 1 1 100%;
}
.user_form > div.header {
	margin-top: 20px;
	display: block;
}
.user_form .header h2,
.user_form .header h3 {
	margin: auto;
	text-align: center;
}
.user_form .header h3 {
	font-size: 14pt;
	margin-top: 16px;
	color: #008FA9;
}
.user_form > div > label {
	width: 100%;
	position: relative;
}
.user_form label.required::before {
	content: '*';
}
.user_form input[type="text"],
.user_form input[type="number"],
.user_form input[type="password"],
.user_form select,
.user_form textarea {
	font: normal 12pt karlaregular, Calibri, Verdana, san-serif;
	box-sizing: border-box;
	display: block;
	padding: 10px;
	width: 100%;
	border: 0;
	background: #f7f5f2;
	color: #A78769;
	text-align: center;
	-moz-appearance: none; /* Firefox */
	-webkit-appearance: none; /* Safari and Chrome */
	appearance: none;
}
.user_form select {
	background: #f7f5f2 url('/images/icons/small-brown-down-arrow.png') no-repeat right center;
	background-position: right 10px center;
}
.user_form select.tiny {
	background-image: none;
}
.user_form textarea {
	text-align: left;	
}
.user_form option {
	font: normal 12pt karlaregular, Calibri, Verdana, san-serif;
	text-align: center;
}
.user_form  *::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #A78769;
  opacity: 1;
}
.user_form  *::-moz-placeholder { /* Firefox 19+ */
  color: #A78769;
  opacity: 1;
}
.user_form  *:-ms-input-placeholder { /* IE 10+ */
  color: #A78769;
  opacity: 1;
}
.user_form  *::placeholder {
  color: #A78769;
  opacity: 1;
}
.user_form p.form_required_note {
	margin: 1em 0 1em auto;
	text-align: right;
}
.user_form .footer {
	display: block;
	text-align: center;
	width: 100%;
	margin-top: 20px;
}
.user_form .footer button {
	display: inline-block;
	width: 162px;
	height: 38px;
	border: 0;
	background: url(/images/buttons/SendForm.png) no-repeat;
}
.user_form .footer button:hover {
	background-image: url(/images/buttons/SendForm-Hover.png);
}
.user_form .footer p {
	margin-top: 20px;
	font-size: 9pt;
}

button.form_submit,
input.form_submit,
form_buttons a {
	display: block;
	background-color: #008FA9;
	color: white;
	border: 2px solid #008FA9;
	border-radius: 14px;
	padding: 4px 14px;
	font: bolder 11pt karlaregular, Calibri, Verdana, san-serif;
	text-transform: uppercase;
	box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.4);
	cursor: pointer;
}
button.form_submit:hover,
input.form_submit:hover,
form_buttons a:hover {
	background-color: white;
	color: #008FA9;
}