
    /* General Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'PingFangSC-Regular', sans-serif;
        background-color: #fff;
        overflow: hidden;
    }
    
    /* Page Layout */
    .page {
        display: flex;
        width: 100vw;
        height: 100vh;
        max-width: 1920px;
        margin: 0 auto;
    }
    
    .left-panel, .right-panel {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .left-panel {
        background: url('/static/images/SketchPng3d7f6568b8c30d8be3c6467bcb3435930f88cf0995c1f6e2ae8a00d1ecdf9aab.png') no-repeat center;
        background-size: cover;
        animation: fadeIn 1s ease-in;
    }
    
    .right-panel {
        background: #fff;
        align-items: center;
    }
    
    /* Logo */
    .logo-wrapper {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .logo {
        width: 300px;
        height: 83px;
    }
    
    /* Features */
    .features {
        margin-bottom: 40px;
    }
    
    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .feature-item img {
        width: 24px;
        height: 24px;
        margin-right: 14px;
        margin-top: 4px;
    }
    
    .feature-text h2 {
        font-family: 'PingFangSC-Medium';
        font-size: 24px;
        color: #0E1438;
        margin-bottom: 10px;
    }
    
    .feature-text p {
        font-size: 16px;
        color: #555;
    }
    
    /* Testimonial */
    .testimonial-content {
        background: #F7F7F7;
        padding: 30px;
        border-radius: 8px;
    }
    
    .testimonial-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .testimonial-header img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .testimonial-info h3 {
        font-family: 'PingFangSC-Medium';
        font-size: 20px;
        color: #0E1438;
    }
    
    .testimonial-info p {
        font-size: 14px;
        color: #0E1438;
    }
    
    .testimonial-text {
        font-size: 16px;
        color: #0E1438;
        line-height: 22px;
    }
    
    /* Login Header */
    .login-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .header-content {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .header-content img {
        width: 24px;
        height: 24px;
        margin-right: 14px;
    }
    
    .header-title {
        font-family: 'PingFangSC-Medium';
        font-size: 24px;
        color: #0E1438;
    }
    
    .login-header h1 {
        font-family: 'PingFangSC-Medium';
        font-size: 32px;
        color: #0E1438;
        margin-bottom: 10px;
    }
    
    .register-link {
        font-family: 'PingFangSC-Medium';
        font-size: 18px;
        color: #6272FD;
        text-decoration: none;
        margin-right: 10px;
        transition: color 0.3s;
    }
    
    .register-link:hover {
        color: #3f51b5;
    }
    
    .login-header img {
        width: 20px;
        height: 20px;
        vertical-align: middle;
    }
    
    /* Login Description */
    .login-description p {
        font-size: 16px;
        color: #555;
        text-align: center;
        margin-bottom: 20px;
    }
    
    /* Quick Links */
    .quick-links {
        margin-bottom: 20px;
    }
    
    .link-item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .link-item img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    .link-item span {
        font-size: 18px;
        color: #0E1438;
    }
    
    /* Login Form */
    .login-form {
        width: 560px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-field {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .form-field label {
        font-family: 'PingFangSC-Medium';
        font-size: 14px;
        color: #0E1438;
        display: block;
        margin-bottom: 5px;
    }
    
    .form-field input {
        width: 100%;
        height: 45px;
        border: 1px solid #CCC;
        border-radius: 6px;
        padding: 0 15px;
        font-size: 18px;
        color: #333;
    }
    
    .form-field input::placeholder {
        color: #CCC;
    }
    
    .password-wrapper {
        position: relative;
    }
    
    .toggle-password {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        cursor: pointer;
    }
    
    .login-button {
        width: 100%;
        height: 45px;
        background: #6272FD;
        border: none;
        border-radius: 6px;
        color: #FFF;
        font-family: 'PingFangSC-Medium';
        font-size: 18px;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .login-button:hover {
        background: #3f51b5;
    }
    
    .forgot-password {
        font-family: 'PingFangSC-Medium';
        font-size: 18px;
        color: #6272FD;
        text-decoration: none;
        margin-top: 20px;
        transition: color 0.3s;
    }
    
    .forgot-password:hover {
        color: #3f51b5;
    }
    
    /* Animation */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .page {
            flex-direction: column;
        }
    
        .left-panel, .right-panel {
            width: 100%;
            padding: 20px;
        }
    
        .login-form {
            width: 100%;
            max-width: 560px;
        }
    }
    
    @media (max-width: 768px) {
        .logo {
            width: 200px;
            height: auto;
        }
    
        .feature-text h2 {
            font-size: 20px;
        }
    
        .login-header h1 {
            font-size: 24px;
        }
    
        .form-field input {
            font-size: 16px;
        }
    }