html,body{
	background: #F0F2F4;
}
body{
	background-image: url(../image/login_background.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.login-box{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.login-header{
	text-align: center;
	font-size: 25px;
	text-shadow: 0px 0px 2px lightgrey;
	letter-spacing: 5px;
	color: white;
}
.login-form-item{
	position: relative;
	display: flex;
	align-items: center;
	width: 250px;
	background: white;
	margin-top: 20px;
	justify-content: space-between;
	padding: 10px 0px;
	border-radius: 5px;
	overflow: hidden;
}
.login-form-item>img{
	position: absolute;
	width: 60px;
	height: 23px;
	top: 8.5px;
	right: 10px;
	cursor: pointer;
}
.login-form-item::before{
	margin-left: 10px;
}
.login-form-item>input,
.login-form-item>select{
	border: 0px;
	outline: 0px;
	padding-left: 10px;
	flex-grow: 1;
}
a{
	text-decoration: none;
	color:#1890FE;
	display: block;
	margin-top: 5px;
	float: right;
}
.login-form-item button{
	width: 100%;
	height: 30px;
	background: #1890FE;
	color: white;
	border: 0px;
}
.item-no-padding{
	padding: 0px;
}
.item-no-bg{
	background: none;
}
.item-right{
	justify-content: flex-end;
}