.pay-pop-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.158);
    z-index: 99999;
}
.login-wrapper{
    width: 400px;

    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
}
.login-modal {
    width: 850px;
    max-width: 98vw;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,102,255,0.10);
    display: flex;
    overflow: hidden;

    transform: translate(0%, 50%);
    position: relative;
}
.login-left {
    width: 40%;
    background: linear-gradient(180deg, #6ecaff 0%, #2196f3 100%);
    padding: 48px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    position: relative;
}
.close-login{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
}
.close-login img{
    width: 100%;
    height: 100%;
}
.login-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}
.login-stats {
    font-size: 10px;
    margin-bottom: 32px;
    text-align: center;
    color: #e3f2fd;
}
.login-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-bottom: 32px;
    justify-content: center;
    display: grid;
    grid-template-columns: auto auto;
}
.login-feature {
    background: #fff;
    color: #222;
    border-radius: 12px;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-align: center;

    min-width: 140px;
    margin-bottom: 0;
    border: 2px solid transparent;
    background: linear-gradient( 130deg, #D5ECFA 0%, #CBDFFF 100%);
    border-radius: 20px 20px 20px 20px;
    border: 1px solid #FFFFFF;
}

.login-feature .icon {
    width: 20px;
    height: 20px;
    background: #2196f3;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
    color: #fff;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
}
.login-ai-img {
    width: 220px;
    margin: 32px auto 0 auto;
    display: block;
}
.login-right {
    width: 60%;
    background: #fff;
    padding: 60px 75px 70px 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.login-tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 600;
}
.login-tab {
    color: #bdbdbd;
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    padding-bottom: 6px;
    transition: color 0.2s, border 0.2s;
}
.login-tab.active {
    color: #222;
    border-bottom: 5px solid #0066ff;

}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.login-input {
    height: 48px;
    border: 1.5px solid #e6e6e6;
    border-radius: 8px;
    font-size: 12px;
    padding: 0 16px;
    outline: none;
    background: #fafbfc;
 
}
.login-input:focus {
    border-color: #2196f3;
}
.login-form-row {
    display: flex;
    gap: 12px;
}
.login-code-btn {
    height: 48px;
    padding: 0 18px;
    background: #fff;
    color: #0066ff;
    border: 1.5px solid #0066ff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.login-code-btn:hover {
    background: #e6f0ff;
}
.login-btn {
    height: 48px;
    background: linear-gradient(90deg, #0066ff 0%, #338bff 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.login-btn:hover {
    background: linear-gradient(90deg, #338bff 0%, #0066ff 100%);
}
.login-agree {
    margin-top: 18px;
    font-size: 13px;
    color: #bdbdbd;
    display: flex;
    align-items: center;
}
.login-agree input[type=checkbox] {
    margin-right: 6px;
}
.login-agree a {
    color: #0066ff;
    text-decoration: none;
    margin-left: 2px;
}
.login-qrcode {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 80px;
    opacity: 0.85;
}
@media (max-width: 900px) {
    .login-modal {
        flex-direction: column;
        width: 98vw;
    }
    .login-left, .login-right {
        width: 100%;
        padding: 32px 10px;
    }
    .login-ai-img {
        width: 160px;
    }
    .login-qrcode {
        width: 60px;
        right: 8px;
        bottom: 8px;
    }
}
@media (max-width: 600px) {
    .login-modal {
        margin: 0;
        border-radius: 0;
    }
    .login-left, .login-right {
        padding: 18px 4vw;
    }
    .login-title {
        font-size: 18px;
    }
    .login-tabs {
        font-size: 16px;
        gap: 18px;
    }
    .login-btn {
        font-size: 16px;
    }
}