.all{
	width:100%;
    height: 100vh;
    background: #F0F3FC;
    display: flex;
	align-items: center;
	overflow: hidden;
}
.div{
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.login{
    width: 400px;
    height: 450px;
    background-color: #ffffff;
    box-shadow: 0 19px 39px #DEE1FF;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    right: 300px;
    transform: translate(0px, -50%);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #434343 !important;
}
.text{
	background-color: #fff;
    width: 80%;
    margin: 30px auto 0;
    height: 40px;
    display: flex;
    border-radius: 5px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #a8c9f5;
}
.text>input{
	flex: 1;
    height: 40px;
    border: none;
    padding: 0 15px;
}
.text .iconfont,.text .fa{
	color:#434343;
	margin-left: 15px;
}
.tit{
	font-size: 25px;
    color: #2882fe;
    text-align: center;
    margin: 30px auto 30px;
}
.btn>button{
	background-color: #2882fe;
    display: block;
    width: 80%;
    height: 40px;
    margin: 50px auto 0;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
}
.btn>button:hover{
	background-color: #2274e5;
}