html, body{ 
	margin: 0;
	padding: 0;
	height: 100%;
}

body{
	font-family: '微软雅黑', Arial, Helvetica, sans-serif;
	font-size: 14px;
	background: url(../images/home/login_bg.jpg) no-repeat center center;
	background-size: cover;
}

ul, li{
	list-style: none;
	margin: 0;
	padding: 0;
}

.logo{
	position: absolute;
	top: 20px;
	left: 10%;
}


.container{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 10px 20px;
}

.container .nav{
	color: #b5b5b6;
	border-bottom: 1px solid #ccc;
}

.nav li{
	display: inline-block;
	padding: 15px;
	position: relative;
	font-size: 16px;
	cursor: pointer;
}

.nav li.active{
	color: #00b5e9;
	cursor: auto;
}

.nav li.active::after{
	content: ' ';
	position: absolute;
	left: 0;
	top: 100%;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #8fdff5;
}


.form-container{
	margin: 15px auto;
}

.form-container >input,
.form-container >button{
	display: block;
	margin-top: 20px;
	width: 350px;
	line-height: 45px;
	height: 45px;
	padding: 0 15px;
	box-sizing: border-box;

}


.form-container >input{
	background-color: #f4f4f4;
	border: 1px solid #ccc;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: #b5b5b6;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #b5b5b6;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #b5b5b6;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #b5b5b6;
}


.form-container >button{
	border: none;
	outline: none;
	color: #fff;
	font-size: 18px;
	border-radius: 5px;
	background: linear-gradient(left, #58efcc, #01b7e7);
	background: -moz-linear-gradient(left, #58efcc, #01b7e7);
    background: -webkit-linear-gradient(left, #58efcc, #01b7e7);
    background: -o-linear-gradient(left, #58efcc, #01b7e7);
    background: -ms-linear-gradient(left, #58efcc, #01b7e7);
}

.footer{
	font-size: 14px;
	margin-top: 15px;
}

.footer label{
	color: #666666;
}

.footer label input[type='checkbox'] {
	position: relative;
	top: 2px;
	margin-right: 3px;
}


.footer a{
	float: right;
	color: #b5b5b5;
	text-decoration: none;
}

#register-wrapper{
	display: none;
}

.validate-wrapper{
	width: 100%;
	overflow: hidden;
}

.input-wrapper{
	width: 100%;
	padding-right: 60px;
	box-sizing: border-box;
	position: relative;
}

.validate-wrapper input{
	display: block;
	margin-top: 20px;
	width: 100%;
	line-height: 45px;
	height: 45px;
	padding: 0 50px 0 15px;
	box-sizing: border-box;
	background-color: #f4f4f4;
	border: 1px solid #ccc;
}

.validate-wrapper .input-wrapper >img{
	position: absolute;
    right: 60px;
    top: 0px;
    bottom: 0;
    height: 45px;
    padding: 8px;
    box-sizing: border-box;
}

.validate-wrapper >img{
	float: right;
	width: 50px;
	height: 45px;
	position: relative;
	top: 20px;
}