/*MAIN STYLE SHEET FOR RUNNINGMAN LOAN OFFICERS LOGIN*/

* {
	font-family: 'Century Gothic';
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html {
	background-color: #333;
	background: url('images/loginBackground.jpg') no-repeat center center fixed #222;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

body {
/*	height: 100%;*/
	width: 100%;
	margin: 0;
	padding: 0;
}

main {
	width: 100%;
	max-width: 500px;
	height: 100%;
	margin: auto;
	margin-top: 10%;
	text-align: center;
	display: table;
}

.header {
	width: 100%;
	max-width: 500px;
	margin: auto;
	margin-bottom: 0;
	display: table-row;
	vertical-align: middle;
}

.header img {
	width: 100%;
}
/*LOGIN BOX
-------------------------------------------------------------*/

.login-box {
	width: 100%;
	max-width: 500px;
	height: 330px;
	display: block;
	margin: auto;
	z-index: 100;
	display: table-row;
	vertical-align: middle;
	padding-top: 15px;
	background-color: #111;
	-webkit-box-shadow: 0 8px 6px -6px black;
	-moz-box-shadow: 0 8px 6px -6px black;
	box-shadow: 0 8px 6px -6px black;
}

.login-box h2 {
	font-size: 1.5em;
}
/*LOGO
---------------------*/

.login-box img {
	width: 100%;
	max-width: 325px;
	display: block;
	margin: 15px auto;
}

.login-box hr {
	color: #a50c0c;
	background-color: #a50c0c;
	margin-bottom: 35px;
	border-color: #a50c0c;
}

.login-box form {
	display: block;
	margin: auto;
	margin-top: 0;
	width: 100%;
	max-width: 275px;
	text-align: center;
}

.login-box label {
	color: #fff;
	display: block;
	text-align: right;
	margin-bottom: 15px;
}

@media (max-width: 390px ) {
	.login-box label {
		text-align: center;
	}
}

.login-box label> input {
	border: 0;
	font-size: 16px;
	padding-left: 5px;
}

.login-box input.button {
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	margin-top: 15px;
	padding: 5px 10px;
	font-weight: bold;
	border: 3px solid #fff;
	background-color: transparent;
}

.login-box input.button:hover {
	transition: .5s;
	background-color: #b5b5b5;
	-moz-box-shadow: 1px 1px 10px 6px #898989;
	-webkit-box-shadow: 1px 1px 10px 6px #898989;
	box-shadow: 1px 1px 10px 6px rgba(0, 0, 0, 0.28);
}

.login-box input.button:active {
	background-color: transparent;
}

.login-box a { color: white; display: block; margin-top: 25px; text-decoration: none !important; transition: color ease .2s; }
.login-box a:hover { color: #6f6f6f; }

/*FOOTER STYLING
-------------------------------------------------------------*/

footer {
	width: 100%;
	bottom: 0;
	margin: 0;
	z-index: -1;
	display: block;
	position: absolute;
	background-color: #111;
}

footer p {
	font-size: 11px;
	color: #fff;
	text-align: center;
}

footer p> a {
	color: #a50c0c !important;
	text-decoration: none;
}
