        /* 通用样式 */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f3f4f6;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            width: 1440px;
            height: 100vh;
            display: flex;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* 左侧背景图部分 */
        .left-section {
            position: relative;
            flex: 1;
            background-image: url('../img/login_backgound.jpg');
            background-size: cover;
            background-position: center;
        }

        .left-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0, 150, 255, 0.4), rgba(0, 102, 204, 0.4));
        }

        .left-section-content {
            position: absolute;
            bottom: 80px;
            left: 80px;
            color: white;
        }

        .left-section-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .left-section-content p {
            font-size: 1.25rem;
        }

        /* 右侧登录表单部分 */
        .right-section {
            width: 520px;
            background-color: white;
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo {
            font-family: 'Pacifico', cursive;
            font-size: 2.5rem;
            color: #0096FF;
            margin-bottom: 1rem;
        }

        .welcome-text {
            color: #6B7280;
            margin-bottom: 3rem;
        }

        .form-group {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .form-group i {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: #9CA3AF;
            pointer-events: none;
        }

        .form-group input {
            width: 100%;
            padding: 10px 15px 10px 45px;
            border: 1px solid #E5E7EB;
            border-radius: 4px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s ease-in-out;
        }

        .form-group input:focus {
            border-color: #0096FF;
            box-shadow: 0 0 0 2px rgba(0, 150, 255, 0.2);
        }

		.uname {
		    background: #fff url(../img/user.png) no-repeat 95% center;
		    color: #333
		}
		
		.pword {
		    background: #fff url(../img/locked.png) no-repeat 95% center;
		    color: #333
		}

        .password-toggle {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            cursor: pointer;
            color: #9CA3AF;
        }

        .form-options {
            margin-bottom: 1.5rem;
        }
        .form-options input {
        	margin-top: 1rem;
        	margin-bottom: 1rem;
            width: 17px;
            height:17px;
        }

        .login-button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #0096FF, #0066CC);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: opacity 0.2s ease-in-out;
        }

        .login-button:hover {
            opacity: 0.9;
        }