.login{
    background: url("../image/bg.png");
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}
.loginForm {
    width: 900px;
    background: #fff;
    margin: 0 auto;
    margin-top: 10%;
    border-radius: 20px;
    padding: 80px 50px;
    box-sizing: border-box;
}
.logoImg{
    display: flex;
    justify-content: center;
}
.loginContent{
    margin-top: 50px;
}
.loginIconImg{
    width: 350px;
}
.loginIconImg img{
    width: 100%;
    display: block;
}
.loginContent{
    display: flex;
    align-items: center;
}
.formRight{
    flex: 1;
    margin-left: 50px;
}
.formList{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
}
.formList:first-child{
    margin-top: 0;
}
.formInput{
    line-height: 50px;
    margin-left: 20px;
    flex: 1;
}
.rememberBox{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.remember{
    margin-left: 8px;
}
.loginTo{
    width: 300px;
    line-height: 50px;
    background: #1d5fd0;
    color: #fff;
    text-align: center;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 30px;
}