
body{
	margin: 0;
	padding: 0;
	font-size: 16px;
}
img{
	max-width: 100%;
	max-height: 100%;
}

.main{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: space-evenly;
}

.flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.middle{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}


.header{
	width: 100%;
	background-color: #ffffff;
	height: 65px;
	padding:0 30px;
	box-sizing: border-box;
	box-shadow: 0 0 10px #f5f5f5;
}

.header .logo{
	width: 300px;
}

.container{
	background-color: #f8f8f8;
	flex: 1;
	position: relative;
	overflow: hidden;
}
.banner{
	width: 471px;
	height: 373px;
	flex-shrink: 0;
}

.login-box{
	width: 340px;
	height: 386px;
	padding:40px 35px 0px 35px;
	box-sizing: border-box;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 0px 10px #f5f5f5;
}

.login-heading{
	font-size: 20px;
	color: #6671fc;
	text-align: center;
	margin-bottom: 27px;
}
.login-form{
	width: 273px;
	box-sizing: border-box;
	margin-bottom: 20px;
	position: relative;
}
.login-form .text-prompt{
	position: absolute;
	bottom:-17px;
	left: 10px;
	font-size: 12px;
	color: #f56c6c
}

.login-form-input{
	padding:8px 15px;
	border:thin solid #e3e3e3;
	border-radius: 4px;
	display: flex;
	align-items: center;
	flex: 1;
}
.login-form-input-icon{
	width: 22px;
	height: 22px;
}

.login-form-input-control{
	width: 100%;
	margin-left: 8px;
	border:none;
	outline: none;
	font-size: 14px;
	
	flex: 1;
}
.login-form-input-control::placeholder{
	color: #bbbbbb;
}

.login-code{
	margin-left: 10px;
	width: 92px;
	height: 41px;
	cursor: pointer;
}

.login-btn{
	margin-left: 10px;
	width: 92px;
	height: 41px;
	line-height: 41px;
	text-align: center;
	border:thin solid #4d86ec;
	color: #1f65ea;
	font-size: 12px;
	box-sizing: border-box;
	flex-shrink: 0;
	border-radius: 4px;
	cursor: pointer;
	user-select: none;
}	

.btn{
	width: 273px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border:thin solid #4d86ec;
	font-size: 12px;
	box-sizing: border-box;
	border-radius: 4px; 
	cursor: pointer;
	user-select: none;
	background: #1e65e6;
	color: #ffffff;
	transition: opacity .2s ease;
}
.btn:hover{
	opacity: .8;
}


.login-btn:hover{
	background-color: #4d86ec;
	color: #ffffff;
}

.footer{
	background-color: #ffffff;
	height: 80px;
	padding-top: 25px;
	box-sizing: border-box;
}

.footer p{
	margin:0;
	text-align: center;
    font-size: 14px;
    color: #666666;
    margin-bottom: 6px;	
}


