  html {
        box-sizing: border-box;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    body {
        margin: 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-size: 14px;
        line-height: 1.5;

    }

    .clearfix {
        &::after {
            content: '';
            display: table;
            clear: both;
        }
    }


    .login-container {
        height: 100vh;
        width: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f0f2f5;

        .login-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
            overflow: hidden;

            .bg-video {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .bg-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                /* background:url(../images/back.jpg) 100% 100% */
               /*  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
                backdrop-filter: blur(2px); */
            }
        }
        
        .formInput{
      	     height: 30px;
   			 width: 100%;
        }

        .login-content {
            position: relative;
            z-index: 1;
            display: flex;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 880px;
            min-height: 480px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .login-left {
            flex: 1;
            padding: 32px;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.1) 0%, rgba(54, 54, 54, 0.9) 100%);
            color: #fff;
            display: flex;
            flex-direction: column;
            position: relative;
            backdrop-filter: blur(5px);

            .brand {
                margin-bottom: 20px;
                display: flex;
                align-items: center;
                gap: 10px;

                .brand-icon {
                    font-size: 22px;
                    color: #13b54b;
                    background: rgba(19, 181, 75, 0.15);
                    padding: 8px;
                    border-radius: 8px;
                }

                .brand-text {
                    font-size: 18px;
                    font-weight: 600;
                    color: #fff;
                }
            }

            .system-name {
                font-size: 28px;
                font-weight: 600;
                margin-bottom: 10px;
                line-height: 1.3;
                background: linear-gradient(to right, #fff, #a816e3);
                -webkit-background-clip: text;
                color: transparent;
            }

            .system-desc {
                font-size: 13px;
                line-height: 1.5;
                opacity: 0.9;
                margin-bottom: 32px;
                max-width: 400px;
            }

            .feature-list {
                .feature-item {
                    display: flex;
                    align-items: flex-start;
                    margin-bottom: 24px;

                    .el-icon {
                        font-size: 24px;
                        margin-right: 14px;
                        color: #13b54b;
                        background: rgba(19, 181, 75, 0.1);
                        padding: 8px;
                        border-radius: 8px;
                    }

                    .feature-info {
                        h3 {
                            font-size: 16px;
                            font-weight: 700;
                            margin: 0 0 4px;
                            color: #64B77F;
                        }

                        p {
                            font-size: 12px;
                            opacity: 0.7;
                            margin: 0;
                            line-height: 1.5;
                        }
                    }
                }
            }
        }

        .login-form-container {
            width: 370px;
            padding: 32px;
            background: rgba(255, 255, 255, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: center;
            backdrop-filter: blur(5px);

            .login-form-content {
                width: 100%;
            }
        }

        .form-header {
            text-align: center;
            margin-bottom: 20px;

            h2 {
                font-size: 20px;
                color: #1a1a1a;
                margin: 0 0 6px;
                font-weight: 600;
            }

            .sub-title {
                font-size: 12px;
                color: #666;
                margin: 0;
            }
        }

        .login-form {
            .custom-input {
                :deep(.el-input__wrapper) {
                    background-color: rgba(245, 247, 250, 0.8);
                    border: none;
                    height: 36px;
                    padding: 0 12px;
                    box-shadow: none;
                    transition: all 0.3s ease;

                    &.is-focus {
                        background-color: rgba(255, 255, 255, 0.95);
                        box-shadow: 0 0 0 2px rgba(19, 181, 75, 0.2);
                    }

                    .el-input__inner {
                        height: 36px;
                        font-size: 13px;
                    }
                }
            }

            .form-options {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin: 14px 0;
                font-size: 12px;
            }

            .login-button {
                width: 100%;
                height: 36px;
                            margin-top: 5px;
                font-size: 16px;
                background: #722f8d;
                color:#fff;
                border: none;
                border-radius: 6px;
                margin-bottom: 16px;
                opacity: 0.9;
                transition: all 0.3s ease;

                &:hover {
                    background: #0d904d;
                    opacity: 1;
                    transform: translateY(-1px);
                }

                &:active {
                    background: #0a7a41;
                    transform: translateY(0);
                }
            }

            .qrcode-login {
                .divider {
                    display: flex;
                    align-items: center;
                    color: #999;
                    font-size: 13px;
                    margin-bottom: 20px;

                    &::before,
                    &::after {
                        content: '';
                        flex: 1;
                        height: 1px;
                        background: #e5e7eb;
                    }

                    span {
                        padding: 0 12px;
                    }
                }

                .qrcode-button {
                    width: 100%;
                    height: 38px;
                    border: 1px solid #e5e7eb;
                    color: #666;
                    font-size: 14px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 6px;
                    transition: all 0.3s ease;

                    .el-icon {
                        margin-right: 6px;
                        font-size: 16px;
                    }

                    &:hover {
                        border-color: #13b54b;
                        color: #13b54b;
                        background: rgba(19, 181, 75, 0.05);
                    }
                }
            }
        }

        .login-footer {
            text-align: center;
            margin-top: 20px;

            p {
                color: rgba(153, 153, 153, 0.8);
                font-size: 12px;
                margin: 4px 0;
            }

            .copyright {
                color: rgba(102, 102, 102, 0.8);
            }
        }
    }


    @media screen and (max-width: 1400px) {
        .login-container {
            .login-content {
            	
                width: 90%;
                max-width: 880px;
            }
        }
    }

    @media screen and (max-width: 1200px) {
        .login-container {
            .login-content {
                width: 90%;
                min-height: 540px;
            }

            .login-left {
                padding: 32px;

                .system-name {
                    font-size: 28px;
                }

                .feature-list {
                    .feature-item {
                        margin-bottom: 20px;
                    }
                }
            }

            .login-form-container {
                width: 340px;
                padding: 32px;
            }
        }
    }

    @media screen and (max-width: 992px) {
        .login-container {
            padding: 20px;

            .login-content {
                flex-direction: column;
                width: 95%;
                max-width: 420px;
                min-height: auto;
                margin: 20px;
            }

            .login-left {
                padding: 24px;
                text-align: center;

                .brand {
                    justify-content: center;
                    margin-bottom: 16px;
                }

                .system-name {
                    font-size: 24px;
                    margin-bottom: 8px;
                }

                .system-desc {
                    margin: 0 auto 24px;
                    font-size: 14px;
                }

                .feature-list {
                    display: none;
                }
            }

            .login-form-container {
                width: 100%;
                padding: 24px;
            }
        }
    }

    @media screen and (max-width: 480px) {
        .login-container {
            padding: 10px;

            .login-content {
                width: 100%;
                margin: 10px;
                border-radius: 8px;
            }

            .login-left {
                padding: 20px;

                .brand {
                    margin-bottom: 12px;

                    .brand-icon {
                        font-size: 20px;
                        padding: 6px;
                    }

                    .brand-text {
                        font-size: 18px;
                    }
                }

                .system-name {
                    font-size: 20px;
                }

                .system-desc {
                    font-size: 12px;
                    margin-bottom: 16px;
                }
            }

            .login-form-container {
                padding: 20px;

                .form-header {
                    margin-bottom: 20px;

                    h2 {
                        font-size: 20px;
                    }

                    .sub-title {
                        font-size: 12px;
                    }
                }

                .login-form {
                    .form-options {
                        margin: 12px 0;
                    }

                    .login-button {
                        height: 36px;
                    }
                }
            }
        }
    }