.elementor-7189 .elementor-element.elementor-element-2a2acc1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;--padding-block-start:5%;--padding-block-end:0%;--padding-inline-start:0%;--padding-inline-end:0%;}.elementor-7189 .elementor-element.elementor-element-2a2acc1:not(.elementor-motion-effects-element-type-background), .elementor-7189 .elementor-element.elementor-element-2a2acc1 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F6F7F9;}.elementor-7189 .elementor-element.elementor-element-2a2acc1, .elementor-7189 .elementor-element.elementor-element-2a2acc1::before{--border-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-0c88505 *//* --- 通用容器和背景 --- */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: #F6F7F9; /* 柔和浅灰色背景 */
    padding: 20px;
}

/* --- 登录表单包裹器样式 --- */
.auth-box {
    background: #ffffff;
    padding: 60px; /* 增加内边距以匹配图片 */
    border-radius: 4px; /* 轻微圆角 */
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); /* 柔和阴影 */
    width: 100%;
    max-width: 500px;
    text-align: left;
}

/* 标题样式：Login */
.auth-title {
    font-family: serif; /* 衬线体 */
    font-size: 40px;
    font-weight: 500;
    color: #111;
    margin-bottom: 25px;
}

/* 副标题样式 */
.auth-subtitle {
    color: #888;
    font-size: 16px;
    margin-bottom: 30px;
}

/* --- 输入框样式 --- */
.input-group {
    margin-bottom: 25px;
}

/* 标签样式：Email, Password */
.input-group label {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

/* 密码行布局 */
.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.label-row label {
    margin-bottom: 0;
}

/* 链接样式：“Forgot password?” “Create one” */
.helper-link, .auth-footer a {
    color: #1a2a3c;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.helper-link:hover, .auth-footer a:hover {
    text-decoration: underline;
}

/* 输入框核心样式 */
.input-group input[type="text"], 
.input-group input[type="email"], 
.input-group input[type="password"] {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #E1E6EB; /* 浅灰色边框 */
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

/* 输入框聚焦样式 */
.input-group input:focus {
    border-color: #1a2a3c;
    outline: none;
}

/* --- 密码可见性切换图标样式 --- */
.password-wrapper {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #888;
}

/* 闭眼状态 (用于 type="password") */
.eye-icon.hidden-eye::before {
    content: "🙈"; /* 使用 Emoji 表示闭眼，更生动 */
}

/* 睁眼状态 (用于 type="text") */
.eye-icon.visible-eye::before {
    content: "👁️"; /* 使用 Emoji 表示睁眼 */
}

/* --- “Sign In” 按钮样式 --- */
.auth-btn {
    width: 100%;
    height: 55px;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* “Sign In” 主按钮颜色：深海蓝色 */
.main-action-btn {
    background-color: #1a2a3c;
}

.main-action-btn:hover {
    background-color: #111f2d;
}

/* --- 表单底部链接样式 --- */
.auth-footer {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

/* --- 折扣信息页脚 --- */
.discount-footer {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}

.discount-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #555;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 10px;
}/* End custom CSS */