/* css by HieuNT */
html {
	height: 100%;
}
body {
	height: 100%;
	font-family: 'Roboto Condensed', sans-serif;
	font-size:13px;
	color:#333;
}

/*login*/
main.login {
	height: 100%;
	/*background-image: url(../images/bg/1.jpg);*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition:all 0.5s ease-in;
}
main.login h1 {
	position: absolute;
	transform: translateY(-50%);
	top:10%;
	text-align: center;
	width: 100%;
	color: #fff;
	font-size: 1.8em;
	text-shadow: 1px 1px 2px rgba(80, 80, 80, 1);
}
main.login .f-login {
	position: absolute;
	transform: translate(-50%,-50%);
	top:50%;
	left: 50%;
	box-shadow: 0px 0px 8px 2px rgba(60,60,60,0.55);
	border-radius: 6px;
	background-color: rgba(0,0,0,0.75);
	padding:10px;
	color:#fff;
}
main.login .f-login h2 {
	font-size: 1.6em;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}
/**/

/*login - footer*/
footer.login {
	position: absolute;
	bottom: 5px;
	right: 5px;
	color:#fff;
}
footer.login a {
	color:#ddd;
}
footer.login a:hover {
	color:#fff;
}
/**/

@media screen and (max-width: 767px) {
	main.login .f-login {
		width: 90%;
	}
}