
.body{
    min-height: 100vh;
}
.logo{
    padding: 40px 0 0 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    img{
        width: 180px;
        height: auto;
    }
}
.orange-login{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    min-height: 100vh;
}
.login-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    .logo-l{
        // width: 100%;
        margin-right:250px ;
        
        img{
            width: 640px;
            height: auto;
        }
    }
    .logo-r{
        height: 100%;
        width: 594px;
        .title{
            font-size: 37px;
            color: #000000;
            margin-bottom: 39px;
            padding-left: 14px;
        }
        .form-item-box{
            // width: 594px;
            background: #FFFFFF;
            box-shadow: 0px 0px 12px -4px rgba(0,0,0,0.2);
            border-radius: 16px;
            padding: 40px 35px;
            box-sizing: border-box;
            .form-item-title{
                font-size: 26px;
                color: #000000;
                display: inline-block;
                &::after{
                    content: '';
                    display: block;
                    width: 98px;
                    height: 3px;
                    background: #FFC400;
                    margin: 0 auto;
                }
            }
            .form-item{
                font-size: 18px;
                margin-top: 34px;
                display: flex;
                align-items: center;
                justify-content: start;
                // border-bottom: 2px solid #F0F0F0;
                &:last-child{
                    margin-bottom: 0;
                }
                .form-item-label{
                    img{
                        width: 30px;
                        height: 30px;
                    }
                }
                .form-item-input{
                    width: 100%;
                    height: 60px;
                    background: #F6F6F6;
                    border-radius: 12px;
                    padding-left: 25px;
                    input{
                        background: none;
                        height: 100%;
                        border: none;
                    }
                }
            }
            .form-but{
                width: 100%;
                margin-top: 60px;
                .login-btn{
                    background: #FFC400;
                    border-radius: 50px;
                    height: 60px;
                    line-height: 60px;
                    color: #000000;
                    font-size: 24px;
                    text-align: center;
                }
            }
        }
    }
}
@media screen and (max-width: 1440px) {
    .login-box{
        .logo-l{
            img{
                width: 520px !important;
            }
        }
        .logo-r{
            width: 460px !important;
        }
    }
    
}
@media screen and (max-width: 700px) {
    .logo-r{
        width: 80vw !important;
    }
}
.footer{
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100vw;
    color: #888888;
    font-size: 14px;
    text-align: center;
    padding-bottom: 10px;
    background: #fff;
    margin-top: 180px;
    a{
        color: #888888;
    }
    .footer-icp{
        margin-bottom: 10px;
    }
}