html {
	height:100%
}
.signin{
	height:100%;
	background:url(../img/login-bg.png?v=2) no-repeat center fixed #015cf2;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.signin .live-weixin{
	background-color: rgba(0,0,0,.6);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1111;
	display: none;
}
.live-weixin img{
	height: 200px;
	position: absolute;
	top: 0;
	right: 0;
}

.form-box,.from-login{
	width: 400px;
	height: 450px;
	max-width: 90%;
	background-color: rgba(255,255,255,.4);
	border: 1px solid rgba(255,255,255,.3);
	-moz-box-shadow: 0 3px 0 rgba(12,12,12,.03);
	-webkit-box-shadow: 0 3px 0 rgba(12,12,12,.03);
	box-shadow: 0 3px 0 rgba(12,12,12,.03);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 30px;
}
.form-down{
	display: flex;
	margin-top: 50px;
}
.form-down .form-btns{
	margin-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.form-code{
	width: 180px;
	height: 180px;
	padding: 10px;
	background-color: #fff;
}
.from-login{
	margin-left: 5%;
}
.from-login .login-title{
	text-align: center;
	font-size: 22px;
	margin-bottom: 20px;
}
.from-login .form-control {
	height: 42px;
	color: #333;
	font-size: 18px;
}
.from-login .input-code{
	display: flex;
}
.from-login .input-code a{
	margin-left: 10px;
}
.from-login .input-code a .imgcode{
	height: 42px;
}
.checkbox-custom input[type="checkbox"]{
	width: 18px;
	height: 18px;
	margin: 0;
}
.checkbox-custom label{
	font-size: 14px;
	vertical-align: top;
	margin-left: 5px;
}
@media screen and (max-width: 900px){
	html{
		min-height: 900px;
		overflow: auto;
	}
	.signin{
		flex-direction: column;
	}
	.form-box,.from-login{
		height: auto;
	}
	.from-login{
		margin-left: 0;
		margin-top: 5%;
	}
	.form-down{
		flex-direction: column;
	}
	.form-code{
		margin-top: 20px;
	}
}