* {
    margin: 0;
    padding: 0;
}

.content {
    width: 100vw;
    height: 100vh;
    background: url(../../images/img_loading_bg.png) no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;

}


.login-content {
    position: relative;
    left: 10%;
    width: 480px;
    height: 618px;
    opacity: 1;
    background: #ffffffff;
    box-shadow: 0 4px 4px 10px #dbdbdb26;
    padding: 30px;
}


.login-box {
    border-radius: 0 30px 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-input{
    width: 320px!important;
    height: 50px !important;
    border-radius: 2px !important;
    opacity: 1;
    background: #f2f4f9ff !important;
}


.login-box>h1 {
    font-size: 36px;
    margin: 60px 0;
    color: #fff;
}

.login-box>input {
    margin-bottom: 20px;
    width: 200px;
    height: 36px;
    padding: 0 20px;
    border-radius: 36px;
    border: none;
    outline: none;
    font-size: 18px;
}

.login-btn {
    margin-top: 20px;
    width: 320px;
    height: 54px;
    border-radius: 2px;
    opacity: 1;
    background: #0088ffff!important;
    border: none;
    border-radius: 40px;
    color: #fff;
    font-size: 18px;
}

@media screen and (max-width: 1200px){

    .login-content {
        position: relative;
        left: 0%;

    }
    .banner-box {
        border-radius: 20px;
    }
}

@media screen and (max-width: 600px) {

    .login-content {
        position: relative;
        left: 0%;
    }

}