.bg_login{
	background-color: #C00;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	min-height: 100%;
	background: rgb(0,85,161);
	background: -moz-radial-gradient(center, ellipse cover, rgba(0,85,161,1) 0%, rgba(0,56,116,1) 100%);
	background: -webkit-radial-gradient(center, ellipse cover, rgba(0,85,161,1) 0%,rgba(0,56,116,1) 100%);
	background: radial-gradient(ellipse at center, rgba(0,85,161,1) 0%,rgba(0,56,116,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0055a1', endColorstr='#003874',GradientType=1 );
}
.login_box{
	margin: 15% auto 10% auto;
	max-width: 300px;
}
.login_box input[type="text"],
.login_box input[type="password"]{
	width: 100%;
	background-color: #FFF;
	border:1px solid #FFF;
	height: 45px;
	padding: 0px 15px;
	font-family: 'ProximaNovaRegular', Arial;
	font-size:0.9em;
	outline: none;
}
.lg_inp_a input{
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.lg_inp_b input{
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
.login_box input[type="text"]{
	border-bottom:1px solid #DDD;
}
.lg_btn{
	padding: 10px 0px;
}
.lg_btn input[type="submit"]{
	padding: 12px;
	width: 100%;
	color: #FFF;
	font-weight: bold;
	transition: all 0.3s;
	border: 1px solid #0087cd;
	background-color: #0087cd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
}
.lg_btn input[type="submit"]:hover{
	border: 1px solid #009cee;
	background-color: #009cee;
}
.lg_logo{
	width: 100%;
	background-image: url('../images/logo.png');
	height: 65px;
	background-repeat: no-repeat;
}


.login-failed{
	margin: 15% auto 10% auto;
	max-width: 400px;
	text-align: center;
	color: #cad6e1;
}
.login-failed a{
	white-space: nowrap;
	color: #cad6e1;
}
.login-failed a:hover{
	color: #FFF;
}