        /* 品牌主题色 */
        :root {
            --primary-blue: #2A7DE1;  /* 米智品牌蓝 */
            --dark-bg: #829cde;       /* 深色背景 */
            --light-text: #F5F6FA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: 'Segoe UI', '微软雅黑', sans-serif; */
        }

        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #0D1520 100%);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .login-container {
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 400px;
            transition: transform 0.3s ease;
        }

        .login-container:hover {
            transform: translateY(-5px);
        }

        .brand-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .brand-logo {
            width: 120px;
            margin-bottom: 1rem;
        }

        h1 {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        input:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 8px rgba(42, 125, 225, 0.2);
        }

        .remember-forgot {
			margin-right: 100px; /* 根据需要调整间距 */
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 1rem 0;
			margin-bottom: 1rem;
			
        }

        button {
            width: 100%;
            padding: 12px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        button:hover {
            background: #1E5BB9;
        }

        .footer-links {
            text-align: center;
            margin-top: 1.5rem;
        }

        a {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.9rem;
        }

        a:hover {
            text-decoration: underline;
        }

        /* 移动端优化 */
        @media (max-width: 480px) {
            .login-container {
                margin: 1rem;
                padding: 1.5rem;
            }
        }
		.error-notification {
			font-weight: 600;       /* 半粗体更现代 */
			color: #ff4444;         /* 更柔和的红色 */
			border-radius: 5px;
			margin: 10px 0;
			display: none;
		}
        .password-rules {
            color: #666; font-size: 0.875em; margin: 0.5rem 0;
        }