.login-body {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-group {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    padding-top: 180px;
    padding-bottom: 90px;
    overflow-y: auto;
    padding-left: 120px;
    width: 800px;
    height: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-h2 {
    font-weight: bold;
}

.login-tips {
    color: #6c757d;
}
.login-input {
    text-indent: 32px;
    height: 54px;
    line-height: 54px;
    background: #F2F2F7;
    border-radius: 6px;
    border: none;
    outline: none; /* 移除聚焦时的默认蓝色边框 */
    padding: 8px 12px; /* 调整内边距，提升用户体验 */
}
.login-input:hover,
.login-input:focus {
    border: none;
    outline: none;
}

.login-icon{
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
    width: 18px;
}
.form-control-m{
    width: 260px;
}
.login-btn,.login-btn-1{
    height: 54px;
    background: linear-gradient(90deg, #3947FF 0%, #805AF5 100%);
    box-shadow: 0px 3px 10px 0px rgba(57,71,255,0.4);
    border-radius: 6px;
}
.btn-outline-secondary{
    font-family: PingFang SC;
    width: 130px;
    margin-left: 10px;
    background: #F2F2F7;
    border: 0;
    line-height: 54px;
    text-align: center;
    color: #3947FF;
    cursor: pointer;
}
.btn-djs{
    display: none;
    font-family: PingFang SC;
    width: 130px;
    margin-left: 10px;
    background: #F2F2F7;
    border: 0;
    line-height: 54px;
    text-align: center;
    color: #94949B;
    cursor: pointer;
}


.text-center a,.text-center a:hover {
    color: #3947FF;
    text-decoration: none;

}

.text-center a:hover {
    text-decoration: underline;
}
@media (min-width: 1200px){
    .w400px{
        width: 400px;
    }
    .border-radius-6 {
        border-radius: 6px;
    }
}
@media (min-width: 993px) and (max-width: 1199px){
    .w400px{
        width: 250px;
    }
    .border-radius-6 {
        border-radius: 4px;
    }
    .btn-outline-secondary,.btn-djs,.login-input{
        line-height: 34px;
    }
    .btn-outline-secondary,.btn-djs{
        width: 81px;
    }
    .form-control-m{
        width: 163px;
    }
    .login-btn,.login-btn-1{
        height: 34px;
    }
    .login-input{
        height: 34px;
    }
    .login-icon{
        width: 11px;
    }
    .login-group{
        width: 500px;
        padding-top: 113px;
        padding-bottom: 50px;
        overflow-y: auto;
        padding-left: 75px;
    }
}
@media (max-width: 992px){
    .w400px{
        width: 200px;
    }
    .form-control-m{
        width: 130px;
    }
    .btn-outline-secondary,.btn-djs{
        line-height: 27px;
        width: 65px;
    }

    .border-radius-6 {
        border-radius: 4px;
    }
    .btn-outline-secondary,.btn-djs,.login-input{
        line-height: 27px;
    }
    .login-btn,.login-btn-1{
        height: 27px;
    }
    .login-input{
        height: 27px;
    }
    .login-icon{
        width: 11px;
    }
    .login-group{
        width: 400px; padding-top: 90px;
        padding-bottom: 30px;
        overflow-y: auto;
        padding-left: 60px;
    }
}