@charset "utf-8";

html, body{
	height: 100%;
}

body{
	justify-content: center;
	align-items: center;
	background-color: #00A8FF;
	min-width: 500px;
}

body:after{
	content: '';
	position: fixed;
	left: 50%;
	bottom: 50%;
	width: 140%;
	height: 90%;
	background-color: rgba(255, 255, 255, .1);
	z-index: 2;
	-webkit-transform: translate3d(-50%, 0, 0) rotate(15deg) ;
	-ms-transform: translate3d(-50%, 0, 0) rotate(15deg) ;
	transform: translate3d(-50%, 0, 0) rotate(15deg) ;
	-webkit-transform-origin: center bottom;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom;
}

.loginForm, .registForm{
	display: none;
}

.showLogin .loginForm, .showRegist .registForm{
	display: block;
}

.panel{
	background: #fff;
	border-radius: 5px;
	width: 400px;
	position: relative;
	z-index: 3;
	padding-bottom: 40px;
}

h1{
	text-align: center;
	font-size: 24px;
	color: #444;
	margin: 51px 0 30px;
	letter-spacing: 1px;
	font-weight: normal;
}

.item{
	width: 320px;
	margin: 0 auto 20px;
}

.input.item input, .code.item input{
	border: none;
	background: none;
	font-size: 16px;
	height: 40px;
	text-indent: 18px;
	background: #F5F6F7;
}

.input.item input{
	width: 100%;
}

input::placeholder{
	color: #9B9FA4;
}

.input.item input:-webkit-autofill {
	box-shadow: 0 0 0 999px #F5F6F7 inset;
	font-size: 16px;
}

.code.item{
	justify-content: space-between;
	align-items: center;
}

.code.item input{
	width: 190px;
}

.code.item img{
	height: 38px;
}

.option.item{
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
}

.option.item input{
	width:14px;
	height:14px;
	border:1px solid #9B9FA4;
	background: none;
}

.option.item label{
	font-size: 14px;
	color: #444;
	margin-left: 3px;
}

.option.item div{
	align-items: center;
}
.option.item a{
	font-size: 14px;
	color: #00A8FF;
}

.btns{
	justify-content: space-between;
	margin: 30px auto 0;
	width: 320px;
}

.btns input{
	width: 152px;
	height: 40px;
	line-height: 40px;
	border-radius: 40px;
	background: #00A8FF;
	border: none;
	color: #fff;
	font-size: 16px;
	text-align: center;
}

.btns a{
	width: 150px;
	height: 38px;
	line-height: 38px;
	border-radius: 40px;
	background-color: #fff;
	border: solid 1px #00A8FF;
	color: #00A8FF;
	font-size: 16px;
	text-align: center;
}

.noregist .btns input{
	width: 320px;
}

.other_account{
	margin: 40px auto 0;
	width: 320px;
}

.other_account p{
	text-align: center;
	position: relative;
}

.other_account p:after{
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	background-color: #E9ECEF;
}

.other_account span{
	font-size: 14px;
	color: #444;
	background-color: #fff;
	padding: 0 16px;
	line-height: 20px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.other_account div{
	padding: 22px 0 32px;
	margin: 0 38px;
	justify-content: space-between;
}

.other_account div img{
	width: 46px;
	height: 46px;
}

.bdLoginBox{
	width: 500px;
	height: 363px;
	position: fixed;
	left: 50%;
	top: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	-ms-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
	z-index: 10;
	background-color:#FFFFFF;
	border: none;
}

.bdCover{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 9;
}