.login{
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* 禁用滚动条 */
    position: relative;
}
.login-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-card{
    background: #FEFFFF;
    width: 987px;
    height: 500px;
    border-radius: 20px;
    position:absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    /*transform: translate(-50%, -50%);*/
    margin-left: -494px;
    margin-top: -250px;
    display: flex;

}
.login-card-left{
    width: 62%;
    position: relative;
    overflow: hidden;

}
.login-form-img{
    width: 594px;
    position: absolute;
    margin-top: 52px;

}
.login-card-right{
    width: 38%;
    padding:45px 36px 26px 26px;
}
.login-card-right .el-form{
    width: 360px;
}
.form-title{
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 60px;
    color: var(--theme-color-primary);
}
.login-btn{
    width: 100%;
    font-size: 24px!important;
    padding:12px 0!important;
}
.form-input{
    background: #EBEBEB;
    border-radius: 8px;
    height: 50px;
}
.form-input .el-input__inner{
    background: #EBEBEB;
    border:none;
    height: 50px;
}
.el-form-item__label{

    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
}
.el-form-item{
    margin-bottom: 32px;
}
.el-form-item:is(:last-child){
    margin-bottom: 0;
}
.el-input__inner::placeholder {
    color: rgba(0, 0, 0, 0.6);
    opacity: 0.5;
}
.ipc{
    font-size: 24px;
    color:#ffffff;
    position:fixed;
    bottom:4px;
    left:50%;
    transform: translateX(-50%);
    z-index: 2;
}
.ipc a{
    text-decoration: none;
}