.loginbox {
    width: 100%;
    overflow-x: clip;
    background-image: url("../img/img-bg-login-reg.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 92px 0 100px;
    box-sizing: border-box;
}

.loginForm {
    max-width: 1200px;
    /*height: 682px;*/
    display: flex;
    position: relative;
    margin: 0 auto;
}
.formbox{
    width: 80%;
}

.loginForm .right {
    width: 50%;
    overflow: hidden;
    display: none;
}

.loginForm .right img {
    /*width: 100%;*/
    /*height: 100%;*/
    height: 119vh;
}
.loginForm .right .point1{
    position: absolute;
    right: -100px;
    top: 84px;
    width: 247px;
    height: 247px;
}
.loginForm .right .point2{
    position: absolute;
    right: 56px;
    bottom: -40px;
    width: 100px;
    height: 100px;
}

.loginForm .left {
    width: 90%;
    background: #fff;
    position: relative;
    padding-left: 30px;
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
}

.loginForm  .formbox .title{
    margin-top: 88px;
    height: 32px;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 48px;
}
.register.loginForm  .formbox .title{
    margin-top: 48px;
}
.loginForm  .formbox .card{
    border: none;
    width: 100%;
    background: #fff;
    box-shadow: 0 20px 40px 0 rgba(74, 87, 58, .15);
    border-radius: 8px;
    margin-top: 46px;
    padding: 0;
}
.loginForm .left .point {
    position: absolute;
    right: 30px;
    top: -75px;
    width: 165px;
    height: 165px;
}
.inputli{
    border-bottom: 1px solid #EBEBEB;
    position: relative;
    display: flex;flex-direction: column;
    padding: 15px 20px 5px 20px;
    box-sizing: border-box;
}
.inputli p{
    font-size: 12px;color: #979797;
}
.inputli label{
    color: rgb(0, 0, 0);
    font-weight: bold;
}
.inputli input{
    margin-top: 5px;
}
.inputli input::placeholder{
    color: #ccc;
}
.loginbtn button{
    width: 100%;
    height: 50px;
    text-align: center;
    background: #4B6A2C;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-top: 56px;
    cursor: pointer;
    transition: all .3s;
}
.loginbtn button:hover{
    background:#4B6A2Ccc ;
}
.registerA{
    display: block;
    text-align: center;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 400;
    color: #4B6A2C;
    line-height: 24px;
    margin: 20px auto ;
}
.bodder{
    width: 4px;
    height: 100%;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bodder div{
    background-color: #EFF6E9;
    height: 33%;
}
.bodder div:nth-child(2){
    background-color: #DBE6D1;
    height: 33%;
}
.bodder div:nth-child(3){
    background-color: #A5B099;
    height: 33%;
}
@media (max-width:768px){
    .loginForm .formbox .title{
        font-size: 25px;
    }
    .loginForm .left{
        width: 96%;
        margin: 0 auto;
        padding-left: 0;
        padding: 10px ;
    }
    .bodder{
        margin-right: 3px;
        display: none;
    }
    .formbox{
        width: 100%;
    }
    .loginForm .right{
        display: none;
    }
}