 /* 主体容器 */
        .login-wrapper {
            max-width: 520px;
            margin: 50px auto 60px;
            padding: 0 20px;
        }
        /* 登录卡片 */
        .login-card {
            background: #fffefb;
            border-radius: 32px;
            box-shadow: 0 20px 35px -12px rgba(60,40,20,0.2);
            overflow: hidden;
            border: 1px solid #f0dc9c;
        }
        .login-header {
            background: linear-gradient(115deg, #fdf3e0, #faeccc);
            padding: 28px 32px;
            text-align: center;
            border-bottom: 1px solid #e8d4b0;
        }
        .login-header h2 {
            font-family: "华文楷书", cursive;
            font-size: 28px;
            color: #c49a6c;
            margin-bottom: 6px;
        }
        .login-header p {
            color: #b8946a;
            font-size: 14px;
        }
        /* 表单区域 */
        .login-form {
            padding: 32px 36px;
        }
        .form-row {
            margin-bottom: 24px;
        }
        .form-label {
            display: block;
            font-weight: 600;
            color: #7a5a42;
            margin-bottom: 8px;
            font-size: 14px;
        }
        .form-label i {
            margin-right: 8px;
            color: #d4a76a;
        }
        .form-control {
            width: 100%;
            background: #fffef7;
            border: 1px solid #e2d0b0;
            border-radius: 48px;
            padding: 12px 20px;
            font-family: inherit;
            font-size: 14px;
            outline: none;
            transition: 0.2s;
        }
        .form-control:focus {
            border-color: #d4b87a;
            box-shadow: 0 0 0 3px rgba(212,184,122,0.2);
        }
        /* 额外链接行 */
        .form-links {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            font-size: 13px;
        }
        .form-links a {
            color: #d4a76a;
            text-decoration: none;
            transition: 0.2s;
        }
        .form-links a:hover {
            color: #b8864b;
            text-decoration: underline;
        }
        /* 提交按钮 */
        .login-btn {
            width: 100%;
            background: linear-gradient(115deg, #e8b87a, #d49c5c);
            border: none;
            padding: 14px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(212,156,92,0.3);
            margin-bottom: 10px;
        }
        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212,156,92,0.4);
            background: linear-gradient(115deg, #f0c48a, #e0ac6c);
        }
        /* 快速登录区域 */
        .quick-login {
            margin-top: 28px;
            text-align: center;
            border-top: 1px solid #e8dcc8;
            padding-top: 24px;
        }
        .quick-login p {
            color: #b8946a;
            font-size: 13px;
            margin-bottom: 16px;
        }
        .quick-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        .quick-icon {
            cursor: pointer;
            transition: transform 0.3s;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .quick-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .quick-icon:hover {
            transform: scale(1.1);
        }
        /* 注册引导 */
        .register-guide {
            text-align: center;
            margin-top: 20px;
            font-size: 13px;
            color: #b8946a;
        }
        .register-guide a {
            color: #d4a76a;
            text-decoration: none;
            font-weight: 600;
        }
        .register-guide a:hover {
            text-decoration: underline;
        }