body{
	margin: 0;
	padding: 0;
	background: url(../../img/bg_LoginPage.png) no-repeat center center fixed;
	background-size: cover;
	background-position: center;
	font-family: sans-serif;
	color: #fff;
}

.login-box{
	width: 25%;
	height:55%;
	min-width: 250px;
	min-height: 350px;
	background: rgba(0, 0, 0, 0.4);
	top: calc(50% + 100px);
	left: 80%;
	position: absolute;
	transform:translate(-50%,-50%);
	box-sizing: border-box;
	padding: 60px 30px;
	border-radius: 10px;
}

.avatar{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
}

h1{
	margin: 0;
	padding: 0 0 20px;
	text-align: center;
	font-size: 22px;
}

.login-box p{
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: bold;
}

.login-box input {
	width: 100%;
	margin-bottom: 20px;
}

.login-box input[type="text"], input[type="password"]{
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	outline: none;
	height: 20px;
	color: #ddd;
	font-size: 16px;
}

.login-box input[type="submit"]{
	border: none;
	outline: none;
	height: 40px;
	width:100%;
	background: #009abf;
	color: #ddd;
	font-size: 20px;
	border-radius: 10px;
	font-weight: bold;
}

.login-box input[type="submit"]:hover{
	curosr: pointer;
	background: #00c0ef;
	color: #fff;
}

.login-box a{
	text-decoration: none;
	font-size: 14px;
	color: #ddd;
}

.login-box a:hover{
	color: #fff;
}

.systemMsg{
	padding-top:10px;
	color: #ff5959;
}