.login {
    background-color: #F8F8F8;
}

.login .box1 {
    padding: 140px 0;
}

.login .box1 .box-c {
    display: flex;
    justify-content: space-between;
}

.login .box1 .box-c .l {
    width: 49.28%;
}

.login .box1 .box-c .l .pic {
    border-radius: 10px;
    height: 100%;
}
.login .box1 .box-c .l .pic img{
    display: block;
    height: 100%;
    object-fit: cover;
}
.login .box1 .box-c .r {
    height: 560px;
    width: 50%;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 60px 50px 20px;
}

.login .box1 .box-c .r .r-t {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.login .box1 .box-c .r .r-t a {
    width: 180px;
    line-height: 60px;
    background: #EDEDED;
    border-radius: 30px;
    font-family: Rany-Bold;
    font-size: 24px;
    color: #222222;
    text-align: center;
    transition: all .6s;
}

.login .box1 .box-c .r .r-t a.active {
    background-color: #222222;
    color: #fff;
}

.login .box1 .box-c .r .r-c {
    margin-top: 40px;
}
.login .box1 .box-c .r .r-c .item{
    display: none;
}
.login .box1 .box-c .r .r-c .item.active{
    display: block;
}
.login .box1 .box-c .r .r-c form .input:not(:last-child) {
    margin-bottom: 16px;
}

.login .box1 .box-c .r .r-c form .input label {
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
    display: block;
}

.login .box1 .box-c .r .r-c form .input label span {
    color: #FF2700;
}
.login .box1 .box-c .r .r-c form .input .input-box{
    position: relative;
}
.login .box1 .box-c .r .r-c form .input input {
    display: block;
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    outline: none;
    padding: 0 20px;
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
}

.login .box1 .box-c .r .r-c form .submit {
    margin-top: 40px;
    width: 140px;
    line-height: 50px;
    background: #FF2700;
    border-radius: 5px;
    font-family: Rany-Bold;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
}

.login .box1 .box-c .r .r-c form .remember {
    display: flex;
    align-items: center;
    font-family: Rany;
    font-weight: 400;
    font-size: 18px;
    color: #CCCCCC;
    line-height: 30px;
    margin-top: 15px;
}

.login .box1 .box-c .r .r-c form .remember input {
    position: relative;
    width: 20px;
    height: 20px;
    visibility: hidden;
    margin-right: 10px;
}
.login .box1 .box-c .r .r-c form .remember input::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    visibility: visible;
}
.login .box1 .box-c .r .r-c form .remember input::after{
    position: absolute;
    content: "\e7ed";
    font-family: "iconfont";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    color: #fff;
    background-color: #FF2700;
    border-radius: 5px;
    opacity: 0;
}
.login .box1 .box-c .r .r-c form .remember input:checked::after{
    opacity: 1;
}
.login .box1 .box-c .r .r-c form .lostPassword{
    margin-top: 39px;
    text-align: right;
}
.login .box1 .box-c .r .r-c form .lostPassword a{
    font-family: Rany;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 30px;
    transition: all .6s;
}
.login .box1 .box-c .r .r-c form .lostPassword a:hover{
    color: #FF2700;
}
@media (max-width:1199px) {
    .login .box1{
        padding: 80px 0;
    }
    .login .box1 .box-c .r{
        padding: 40px 40px 20px;
        height: 490px;
    }
    .login .box1 .box-c .r .r-t a{
        width: 160px;
        line-height: 50px;
        font-size: 20px;
    }
    .login .box1 .box-c .r .r-c form .submit{
        margin-top: 25px;
    }
    .login .box1 .box-c .r .r-c form .lostPassword{
        margin-top: 25px;
    }
    .login .box1 .box-c .r .r-c{
        margin-top: 30px;
    }
}
@media (max-width:1024px) {
    .login .box1 .box-c .l{
        display: none;
    }
    .login .box1{
        padding: 70px 0;
    }
    .login .box1 .box-c .r{
        width: 499px;
        max-width: 100%;
    }
    .login .box1 .box-c{
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .login .box1{
        padding: 60px 0;
    }
    .login .box1 .box-c .r .r-t a{
        line-height: 45px;
        font-size: 18px;
        width: 120px;
    }
    .login .box1 .box-c .r .r-c form .input label{
        font-size: 16px;
    }
    .login .box1 .box-c .r .r-c form .input input{
        height: 45px;
        font-size: 16px;
    }
    .login .box1 .box-c .r .r-c form .submit{
        line-height: 45px;
        font-size: 16px;
    }
    .login .box1 .box-c .r .r-c form .remember{
        font-size: 16px;
    }
}
@media (max-width: 500px) {
    .login .box1 .box-c .r .r-c form .remember{
        font-size: 14px;
    }
    .login .box1 .box-c .r .r-t a{
        font-size: 16px;
    }
    .login .box1 .box-c .r{
        padding: 30px 20px 20px;
    }
    .login .box1{
        padding: 50px 0;
    }
    .login .box1 .box-c .r .r-c form .input label{
        font-size: 14px;
    }
    .login .box1 .box-c .r .r-c form .input input{
        font-size: 14px;
    }
    .login .box1 .box-c .r .r-c form .submit{
        font-size: 14px;
    }
}