.header {
	background-color: #044801;
	background-image: url(/assets/images/header.jpg);
	height: 180px;
	background-repeat: no-repeat;
}
.form-signin {
	max-width: 330px;
	padding: 20px;
	margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
	margin-bottom: 10px;
}
.form-signin .checkbox {
	font-weight: normal;
}
.form-signin .form-control {
	position: relative;
	height: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
	font-size: 12px;
}
.form-signin .form-control:focus {
	z-index: 2;
}
.form-signin input[type="password"] {
	margin-bottom: 10px;
}
#wait {
	display: none;
	z-index: 1000;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(100, 100, 100, 0.5);
}
.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	border: 5px solid #f3f3f3;
	border-top: 5px solid #555;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
