#login{
	width: calc(100% - 40px);
    margin-left: 20px;
    margin-bottom: 30px;
    color: #5A2800;
    font-family: Arial, Helvetica, sans-serif;
}

#login_header{
	width:100%;
	height:32px;
	margin-top:10px;
	text-align:center;
	font-family: Martel, Tahoma, Geneva, sans-serif;
	font-size:32px;
}

#login_errors_header{
	width:100%;
	height:16px;
	margin-top:20px;
	padding-top:4px;
	padding-bottom:4px;
	background-color:#d4c0a1;
	border-radius:1px;
	position:relative;
	z-index:2;
}

#login_errors_header_icon{
	width:16px;
	height:16px;
	margin-left:4px;
	float:left;
}

#login_errors_header_icon img{
	width:16px;
	height:16px;
}

#login_errors_header_text{
	height:16px;
	margin-left:5px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size:14px;
	float:left;
}

#login_form{
	width:100%;
	margin-top:20px;
}

#login_section{
	width:calc(100% - 42px);
	border:solid 1px #d9c5a6;
	border-radius:1px;
	margin-top:20px;
	padding:20px;
	position:relative;
}
#login_section:first-child{
	margin-top:0;
}

#login_section_header{
	height:14px;
	position:absolute;
	padding-left:10px;
	padding-right:10px;
	top:-7px;
	left:10px;
	background-color:#fef0d9;
	font-size:12px;
	font-weight:bold;
}

.login_form_row{
	width:100%;
	margin-top:15px;
}

.login_form_field{
	width:calc(50% - 20px);
	margin-left:40px;
	float:left;
}
.login_form_field:first-child{
	margin-left:0;
}

.login_form_field_header{
	width:100%;
	font-size:14px;
}

.login_form_field_input{
	width:100%;
	margin-top:5px;
}

.login_form_field input[type=text], .login_form_field input[type=password]{
	width:calc(100% - 10px);
	height:16px;
	background-color:rgba(255,255,255,0.3);
	padding:4px;
	border:solid 1px #c4b091;
	box-sizing:content-box;
	margin:0px;
	outline:0;
	color: #5A2800;
}

.login_form_forgot{
	width:100%;
	margin-top:2px;
	font-size:10px;
	text-align:right;
}

#login_finalise{
	width:calc(100% - 40px);
	height:35px;
	margin-left:20px;
	margin-top:20px;
	display:flex;
	align-items:center;
	justify-content:space-between;
}

#login_submit{
	width:135px;
	height:25px;
	background:url('images/sbutton.gif');
	float:left;
	cursor:pointer;
}
#login_submit:hover{
	background:url('images/sbutton_over.gif'), url('images/sbutton.gif');
}

#login_submit_text{
	width:100%;
	height:16px;
	margin-top:4px;
	text-align:center;
	text-shadow: -1px -1px 0 rgba(0,0,0,0.7), 1px -1px 0 rgba(0,0,0,0.7), -1px 1px 0 rgba(0,0,0,0.7), 1px 1px 0 rgba(0,0,0,0.7);
	font-size:14px;
	color:#f1d4a5;
	pointer-events:none;
}

#login_options{
	width:calc(100% - 145px);
	float:right;
	text-size:14px;
	text-align:right;
}

@media screen and (max-width: 576px) {
	.login_form_field{
		width:100%;
		margin-left:0 !important;
		float:left;
	}
	#login_section{
		width:calc(100% - 10px);
		padding:20px 5px;
		position:relative;
	}
	#login_finalise{
		width:100%;
		margin-left:0;
	}
}