html,body{
	padding: 0;
	margin: 0;
}

html{
	background-image:url('../images/bg.jpg');
}

.login-bg{
	width: 760px;
	height: 340px;
	margin-left: calc(50% - 380px);
	margin-top: 150px;
	box-shadow: 0 0 5px #fff;
}

.login-content{
	background-color: #fff;
	
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	
	height: 340px;
}

.content-left{
	float:left;
	width: 340px;
	height: 100%;
	background-image: url('../images/left_pic.jpg');
	background-size: 100% 100%;
}

.content-right{
	height: 100%;
	float: right;
	width: calc(100% - 340px);
	text-align: center;
}

.login-title{
	margin-top: 20px;
	font-size: 22px;
	color: #333;
	letter-spacing: 1.5px;
	text-align: center;
}

.content-right-content{
	margin-top: 30px;
}

.content-right-item{
	margin-bottom: 15px;
}

.content-right-item input{
	border:none;
	border-bottom: 1px solid #eaeaea;
	width: 60%;
	height: 40px;
	font-size: 16px;
	border-radius: 0;
}

.content-right-yzm{
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-right-yzm input{
	width: calc(60% - 90px);
	margin-right: 10px;
}

.content-right-yzm img{
	width: 80px;
	height: 40px;
	cursor: pointer;
}

.content-right-button{
	padding-top: 10px;
}

.content-right-button label{
	color: #fff;
	display: inline-block;
	width: 250px;
	border-radius: 20px;
	font-size: 16px;
	padding: 8px 0;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 0 15px rgba(22,177,248,.3);

	background: rgb(10,173,248);
	background: linear-gradient(15deg, rgba(10,173,248,1) 0%, rgba(0,108,249,1) 100%);
}

.content-right-button label:hover {
	background: #aeaeae;
}

.content-right-button label:active {
	background-color: #aeaeae;
	box-shadow:none;
}




