*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.login{
	width: 100%;
	height: calc(100vh);
	background: url(../img/login_bck.png) no-repeat;
	background-size: 100% 100%;
	overflow: hidden;
}
.login-box{
	width: 662px;
	height: 720px;
	padding-top: 100px;
	margin: 114px auto 0;
	background: url(../img/login_box.png) no-repeat;
	background-size: 100% 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.login-title{
	font-size: 44px;
	color: #13FFFC;
	font-weight: bold;
}
.item-list{
	margin-top: 50px;
}
.item-list > div:first-of-type{
	border-bottom: 1px solid rgba(19, 255, 252, 0.3);
}
.every-item{
	width: 540px;
	height: 114px;
	display: flex;
	flex-direction: row;
	align-items: center;
	border-bottom: 1px solid #13FFFC;
}
.every-item > img:first-of-type{
	width:21px;
	margin-right: 34px;
}
.every-item > input{
	font-size: 30px;
	color: #13FFFC;
	background-color: transparent;
	border: none;
}
input:focus{
	outline: none;
	border: none;
}
.every-item > input::-webkit-input-placeholder{
	font-size: 30px;
	color: #13FFFC;
}
.every-item > img:nth-of-type(2){
	width: 24px;
	margin-left: auto;
}
.btn-login{
	width: 540px;
	height: 85px;
	line-height: 85px;
	text-align: center;
	background: linear-gradient(90deg, #178E8C, #18CDCA);
	font-size: 32px;
	background-color: #F6F6F6;
	margin-top: 94px;
	color: #F6F6F6;
}