/* /Pages/Account/Login.cshtml.rz.scp.css */
/* 按钮样式 */
.btn-primary[b-povz1ugh8o] {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-hover);
    --bs-btn-hover-border-color: var(--primary-hover);
    --bs-btn-active-bg: var(--primary-hover);
    --bs-btn-active-border-color: var(--primary-hover);
}

.btn-outline-primary[b-povz1ugh8o] {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-active-bg: var(--primary-hover);
    --bs-btn-active-border-color: var(--primary-hover);
}

/* ===== Admin 管理后台主题 ===== */
.login-box.admin-theme[b-povz1ugh8o] {
    --primary-color: #003366; /* 主色：军蓝 */
    --primary-hover: #002244; /* hover 深军蓝 */
    --highlight-color: #C3AA78; /* 点缀色：香槟金 */
    --bg-card: #f8f9fa; /* 卡片背景 */
    --text-color: #32325d; /* 文字色 */
}

/* ===== Merchant 商户后台主题 ===== */

.login-box.merchant-theme[b-povz1ugh8o] {
    --primary-color: #C3AA78; /* 主色：香槟金 */
    --primary-hover: #B09A6A; /* hover 深香槟金 */
    --highlight-color: #003366; /* 点缀色：军蓝 */
    --bg-card: #ffffff; /* 卡片背景 */
    --text-color: #32325d; /* 文字色 */
}

/* Admin 和 Merchant 的 Logo 标题颜色区分 */

.login-box.admin-theme .login-logo h1[b-povz1ugh8o] { color: var(--primary-color); }

.login-box.merchant-theme .login-logo h1[b-povz1ugh8o] { color: var(--primary-color); }

/* 卡片背景区别 */

.login-box.admin-theme[b-povz1ugh8o] { background: var(--bg-card); }

.login-box.merchant-theme[b-povz1ugh8o] { background: var(--bg-card); }

/* 高亮点缀颜色在按钮、标签、Tab 等处区分 */

.method-tab.active.admin-theme[b-povz1ugh8o],
.method-tab:hover.admin-theme[b-povz1ugh8o] {
    background: var(--primary-color);
    color: #fff;
}

.method-tab.active.merchant-theme[b-povz1ugh8o],
.method-tab:hover.merchant-theme[b-povz1ugh8o] {
    background: var(--primary-color);
    color: #fff;
}
/* /Pages/Index.cshtml.rz.scp.css */
/*************************************************************************************************************************************************/

.identity-container[b-zvjjsptmq7] {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}

.identity-header[b-zvjjsptmq7] {
    margin-bottom: 30px;
    text-align: center;
}

    .identity-header h1[b-zvjjsptmq7] {
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background: linear-gradient(135deg, #003366 0%, #002244 100%); /* ARMY BLU 渐变 */
        background-clip: text;
        font-size: 2.5rem;
        font-weight: 300;
        margin-bottom: 10px;
    }

    .identity-header p[b-zvjjsptmq7] {
        color: #777; /* 柔化文字，匹配哑光银系 */
        font-size: 1.1rem;
    }

.cards-grid[b-zvjjsptmq7] {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-bottom: 30px;
}

.info-card[b-zvjjsptmq7] {
    background: #fafafa; /* 接近哑光银的浅灰 */
    border: 1px solid #d0d0d0; /* MATTE SILVER 边框 */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); /* 降低阴影强度，更柔和 */
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .info-card:hover[b-zvjjsptmq7] {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* 稍微加深 */
        transform: translateY(-5px);
    }

    .info-card h2[b-zvjjsptmq7] {
        align-items: center;
        color: #003366; /* ARMY BLU 主标题色 */
        display: flex;
        font-size: 1.5rem;
        font-weight: 600;
        gap: 10px;
        margin-bottom: 20px;
    }

.card-icon[b-zvjjsptmq7] {
    align-items: center;
    background: linear-gradient(45deg, #003366, #C3AA78); /* ARMY BLU + 香槟金渐变 */
    border-radius: 6px;
    color: white;
    display: flex;
    font-size: 14px;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.info-item[b-zvjjsptmq7] {
    align-items: center;
    border-bottom: 1px solid #e0e0e0; /* 哑光银系分割线 */
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

    .info-item:last-child[b-zvjjsptmq7] {
        border-bottom: none;
    }

.info-label[b-zvjjsptmq7] {
    color: #666;
    flex: 0 0 120px;
    font-weight: 500;
}

.info-value[b-zvjjsptmq7] {
    color: #333;
    flex: 1;
    text-align: right;
    word-break: break-all;
}

    .info-value.empty[b-zvjjsptmq7] {
        color: #aaa; /* 更柔和的灰色 */
        font-style: italic;
    }

.status-badge[b-zvjjsptmq7] {
    border-radius: 20px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 4px 12px;
}

.status-active[b-zvjjsptmq7] {
    background: #e8f4ff; /* 军蓝浅底 */
    color: #003366;
    border: 1px solid #b3d9ff;
}

.status-inactive[b-zvjjsptmq7] {
    background: #fdf6f0; /* 香槟金浅底 */
    color: #8a6d3b;
    border: 1px solid #f5e5c5;
}

.status-verified[b-zvjjsptmq7] {
    background: #f0f9ff;
    color: #004085;
    border: 1px solid #b3d9ff;
}

.roles-list[b-zvjjsptmq7] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.role-tag[b-zvjjsptmq7] {
    background: linear-gradient(45deg, #003366, #C3AA78); /* 军蓝 + 香槟金 */
    border-radius: 15px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 4px 12px;
}

.claims-table[b-zvjjsptmq7] {
    background: #fafafa;
    border: 1px solid #d0d0d0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 30px;
    width: 100%;
}

    .claims-table h2[b-zvjjsptmq7] {
        align-items: center;
        color: #003366;
        display: flex;
        font-size: 1.5rem;
        font-weight: 600;
        gap: 10px;
        margin-bottom: 20px;
    }

.claims-grid[b-zvjjsptmq7] {
    display: grid;
    gap: 10px;
}

.claim-item[b-zvjjsptmq7] {
    align-items: center;
    background: #f5f5f5; /* 哑光银系 */
    border-radius: 8px;
    display: grid;
    gap: 20px;
    grid-template-columns: 200px 1fr;
    padding: 12px;
}

.claim-type[b-zvjjsptmq7] {
    color: #444; /* 深灰，非纯黑 */
    font-weight: 500;
    word-break: break-all;
}

.claim-value[b-zvjjsptmq7] {
    color: #003366; /* ARMY BLU 强调数据 */
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.not-authenticated[b-zvjjsptmq7] {
    padding: 60px 20px;
    text-align: center;
}

    .not-authenticated h2[b-zvjjsptmq7] {
        color: #777;
        font-size: 2rem;
        margin-bottom: 20px;
    }

.login-btn[b-zvjjsptmq7] {
    background: linear-gradient(45deg, #003366, #C3AA78); /* 军蓝+香槟金 */
    border-radius: 25px;
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 12px 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .login-btn:hover[b-zvjjsptmq7] {
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .claim-item[b-zvjjsptmq7] {
        gap: 5px;
        grid-template-columns: 1fr;
    }

    .info-item[b-zvjjsptmq7] {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .info-value[b-zvjjsptmq7] {
        text-align: left;
    }
}

/*************************************************************************************************************************************************/


/* Ҫʽ */

.main-layout[b-zvjjsptmq7] {
    align-items: flex-start;
    display: flex;
    gap: 30px;
}

.main-content[b-zvjjsptmq7] {
    flex: 1;
    min-width: 0;
}

.sidebar[b-zvjjsptmq7] {
    flex: 0 0 350px;
    position: sticky;
    top: 20px;
}

/* Token Ƭʽ */

.token-card[b-zvjjsptmq7] {
    backdrop-filter: blur(15px);
    background: rgba(204, 204, 204, 0.15); /* 哑光银透明层 */
    border: 1px solid rgba(204, 204, 204, 0.3); /* #COCOCO 透明边框 */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.token-value[b-zvjjsptmq7] {
    background: #f0f0f0; /* 哑光银灰 */
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    color: #003366; /* 军蓝文字 */
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    max-height: 80px;
    overflow-y: auto;
    padding: 8px;
    word-break: break-all;
}

.token-warning[b-zvjjsptmq7] {
    background: #fdf6f0; /* 香槟金浅底警告 */
    border: 1px solid #f5e5c5;
    border-radius: 8px;
    color: #8a6d3b; /* 香槟金深色文字 */
    font-size: 0.85em;
    margin-top: 15px;
    padding: 12px;
}


@media (max-width: 1024px) {
    .main-layout[b-zvjjsptmq7] {
        flex-direction: column;
    }

    .sidebar[b-zvjjsptmq7] {
        flex: none;
        order: -1;
        position: static;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .sidebar[b-zvjjsptmq7] {
        flex: none;
    }

    .token-card[b-zvjjsptmq7] {
        padding: 20px;
    }

    .token-value[b-zvjjsptmq7] {
        font-size: 0.8em;
        max-height: 60px;
    }
}

/*************************************************************************************************************************************************/
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-svdm8l32xv] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}



.border-top[b-svdm8l32xv] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-svdm8l32xv] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-svdm8l32xv] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-svdm8l32xv] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-svdm8l32xv] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
/* /Pages/Shared/_LoginLayout.cshtml.rz.scp.css */
.login-page[b-2awud3ms7k] {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.login-container[b-2awud3ms7k] {
    align-items: center;
    display: flex;
    height: 100vh;
    justify-content: center;
    position: relative;
    width: 100%;
}

/* Background Image */

.login-bg-wrapper[b-2awud3ms7k] {
    background-image: url("img/login-bg-img-light.svg");
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.login-bg-img[b-2awud3ms7k] {
    bottom: 0;
    height: auto;
    left: 50%;
    max-width: 1200px;
    opacity: 0.1;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
}

/* Login Content */

.login-content-wrapper[b-2awud3ms7k] {
    max-width: 460px;
    padding: 20px;
    position: relative;
    width: 100%;
    z-index: 1;
}
/* /Views/Authorization/LoggedOut.cshtml.rz.scp.css */
.logged-out-icon[b-l7sk518bir] {
     font-size: 4rem;
     color: #6b7280;
     margin-bottom: 20px;
 }

.logged-out-title[b-l7sk518bir] {
    color: #374151;
    font-weight: bold;
    margin-bottom: 15px;
}

.logged-out-message[b-l7sk518bir] {
    color: #6b7280;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .logged-out-icon[b-l7sk518bir] {
        font-size: 3rem;
    }
}
/* /Views/Authorization/Logout.cshtml.rz.scp.css */
/* 退出登录页面专用样式 */
.logout-header[b-brw0bb8kr0] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff3838 100%);
    position: relative;
    overflow: hidden;
}

    .logout-header[b-brw0bb8kr0]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        animation: shimmer-b-brw0bb8kr0 3s ease-in-out infinite;
    }

@keyframes shimmer-b-brw0bb8kr0 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.logout-content[b-brw0bb8kr0] {
    position: relative;
    z-index: 10;
}

/* 主要内容区域 */
.auth-body[b-brw0bb8kr0] {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.logout-title[b-brw0bb8kr0] {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    text-align: center;
}

.logout-description[b-brw0bb8kr0] {
    color: #718096;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 400;
}

/* 现代化警告框 */
.logout-warning[b-brw0bb8kr0] {
    background: linear-gradient(135deg, #fff5f3 0%, #fed7d7 100%);
    border: 2px solid #fc8181;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(252, 129, 129, 0.15);
}

    .logout-warning[b-brw0bb8kr0]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, #fc8181 0%, #f56565 100%);
        border-radius: 0 3px 3px 0;
    }

    .logout-warning[b-brw0bb8kr0]::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 30%, rgba(252, 129, 129, 0.1) 50%, transparent 70%);
        animation: warningGlow-b-brw0bb8kr0 4s ease-in-out infinite;
    }

@keyframes warningGlow-b-brw0bb8kr0 {
    0%, 100% {
        transform: translateX(100%) translateY(100%);
    }

    50% {
        transform: translateX(-100%) translateY(-100%);
    }
}

.warning-icon[b-brw0bb8kr0] {
    color: #e53e3e;
    font-size: 1.3rem;
    margin-right: 12px;
    animation: bounce-b-brw0bb8kr0 2s ease-in-out infinite;
}

@keyframes bounce-b-brw0bb8kr0 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.logout-warning strong[b-brw0bb8kr0] {
    color: #c53030;
    font-weight: 700;
}

.logout-warning-text[b-brw0bb8kr0] {
    color: #742a2a;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
    font-weight: 500;
}

/* 超现代按钮设计 */
.btn-modern[b-brw0bb8kr0] {
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: none;
    letter-spacing: 0.5px;
}

    .btn-modern[b-brw0bb8kr0]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent );
        transition: left 0.6s ease;
        z-index: 1;
    }

    .btn-modern:hover[b-brw0bb8kr0]::before {
        left: 100%;
    }

    .btn-modern span[b-brw0bb8kr0], .btn-modern i[b-brw0bb8kr0] {
        position: relative;
        z-index: 2;
    }

/* 危险按钮（确认退出） */
.btn-danger.btn-modern[b-brw0bb8kr0] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff3838 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .btn-danger.btn-modern:hover[b-brw0bb8kr0] {
        background: linear-gradient(135deg, #ee5a24 0%, #ff3838 50%, #c44569 100%);
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: translateY(-3px) scale(1.02);
    }

    .btn-danger.btn-modern:active[b-brw0bb8kr0] {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    }

/* 次要按钮（取消） */
.btn-secondary.btn-modern[b-brw0bb8kr0] {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    color: #4a5568;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

    .btn-secondary.btn-modern:hover[b-brw0bb8kr0] {
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        color: #2d3748;
        border-color: #cbd5e1;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transform: translateY(-2px) scale(1.01);
    }

/* 按钮组布局 */
.logout-buttons[b-brw0bb8kr0] {
    display: grid;
    gap: 16px;
    margin-bottom: 3rem;
}

    .logout-buttons .btn-modern[b-brw0bb8kr0] {
        justify-self: center;
        min-width: 200px;
    }

/* 安全提示卡片 */
.security-notice[b-brw0bb8kr0] {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 1px solid #9ae6b4;
    border-radius: 14px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(154, 230, 180, 0.15);
    position: relative;
}

    .security-notice[b-brw0bb8kr0]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #48bb78 0%, #38a169 100%);
        border-radius: 0 0 3px 3px;
    }

.security-icon[b-brw0bb8kr0] {
    color: #38a169;
    margin-right: 8px;
    font-size: 1.1rem;
    animation: securityPulse-b-brw0bb8kr0 3s ease-in-out infinite;
}

@keyframes securityPulse-b-brw0bb8kr0 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.security-notice small[b-brw0bb8kr0] {
    color: #276749;
    font-size: 0.92rem;
    line-height: 1.5;
    font-weight: 500;
}

/* 加载状态样式 */
.btn-loading[b-brw0bb8kr0] {
    pointer-events: none;
    opacity: 0.8;
}

    .btn-loading .spinner[b-brw0bb8kr0] {
        animation: spin-b-brw0bb8kr0 1s linear infinite;
    }

@keyframes spin-b-brw0bb8kr0 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 页面动画效果 */
.logout-content[b-brw0bb8kr0] {
    animation: fadeInScale-b-brw0bb8kr0 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeInScale-b-brw0bb8kr0 {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 响应式优化 */
@media (max-width: 576px) {
    .logout-title[b-brw0bb8kr0] {
        font-size: 1.4rem;
    }

    .logout-description[b-brw0bb8kr0] {
        font-size: 1rem;
    }

    .logout-warning[b-brw0bb8kr0] {
        padding: 20px 18px;
    }

    .btn-modern[b-brw0bb8kr0] {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 180px;
    }

    .logout-buttons[b-brw0bb8kr0] {
        gap: 14px;
    }
}

@media (max-width: 320px) {
    .btn-modern[b-brw0bb8kr0] {
        min-width: 100%;
        padding: 12px 24px;
    }
}
/* /Views/Authorization/Verify.cshtml.rz.scp.css */
.user-code-input[b-nc34gyhoxt] {
     background: #f8f9fa;
     border: 2px solid #e9ecef;
     border-radius: 12px;
     padding: 15px;
     font-size: 1.2rem;
     text-align: center;
     letter-spacing: 3px;
     font-weight: bold;
     text-transform: uppercase;
     transition: all 0.3s ease;
 }

.user-code-input:focus[b-nc34gyhoxt] {
    border-color: #10b981;
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
    background: white;
}

.steps[b-nc34gyhoxt] {
    margin: 20px 0;
}

.step[b-nc34gyhoxt] {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number[b-nc34gyhoxt] {
    background: #10b981;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .user-code-input[b-nc34gyhoxt] {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}
/* /Views/Authorization/VerifySuccess.cshtml.rz.scp.css */
.success-icon[b-6s3f34hiyj] {
     font-size: 4rem;
     color: #10b981;
     margin-bottom: 20px;
     animation: successPulse-b-6s3f34hiyj 2s infinite;
 }

@keyframes successPulse-b-6s3f34hiyj {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.success-title[b-6s3f34hiyj] {
    color: #10b981;
    font-weight: bold;
    margin-bottom: 15px;
}

.success-message[b-6s3f34hiyj] {
    color: #6b7280;
    margin-bottom: 30px;
}

.countdown[b-6s3f34hiyj] {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 15px;
    color: #059669;
    font-weight: 600;
}

@media (max-width: 576px) {
    .success-icon[b-6s3f34hiyj] {
        font-size: 3rem;
    }
}
/* /Views/Shared/_AuthLayout.cshtml.rz.scp.css */
/* 认证容器样式优化 */
.auth-container[b-pozn8hm0ol] {
    align-items: center;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background-image: url(img/login-bg-img-light.svg);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

/* 背景装饰 */

.auth-container[b-pozn8hm0ol]::before {
    animation: float-b-pozn8hm0ol 20s ease-in-out infinite;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    content: '';
    height: 200%;
    left: -50%;
    position: absolute;
    top: -50%;
    width: 200%;
    z-index: 1;
}

@keyframes float-b-pozn8hm0ol {
    0%, 100% { transform: translateY(0px) rotate(0deg); }

    50% { transform: translateY(-20px) rotate(180deg); }
}

/* 卡片样式优化 */

.auth-card[b-pozn8hm0ol] {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
    max-width: 450px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    z-index: 2;
}

.auth-card:hover[b-pozn8hm0ol] {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* 头部样式优化 */

.auth-header[b-pozn8hm0ol] {
    color: white;
    overflow: hidden;
    padding: 40px 30px 30px;
    position: relative;
    text-align: center;
}

.auth-header[b-pozn8hm0ol]::before {
    background: inherit;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.auth-header i[b-pozn8hm0ol] {
    animation: pulse-b-pozn8hm0ol 2s ease-in-out infinite;
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

@keyframes pulse-b-pozn8hm0ol {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.auth-header h3[b-pozn8hm0ol] {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.auth-header p[b-pozn8hm0ol] {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* 主体样式优化 */

.auth-body[b-pozn8hm0ol] { padding: 40px 30px; }

/* 响应式设计 */

@media (max-width: 576px) {
    .auth-container[b-pozn8hm0ol] { padding: 15px; }

    .auth-card[b-pozn8hm0ol] {
        border-radius: 15px;
        max-width: 100%;
    }

    .auth-header[b-pozn8hm0ol] { padding: 30px 20px 25px; }

    .auth-header h3[b-pozn8hm0ol] { font-size: 1.5rem; }

    .auth-header i[b-pozn8hm0ol] { font-size: 2.5rem; }

    .auth-body[b-pozn8hm0ol] { padding: 30px 20px; }
}

/* 加载动画 */

.auth-card[b-pozn8hm0ol] { animation: slideUp-b-pozn8hm0ol 0.6s ease-out; }

@keyframes slideUp-b-pozn8hm0ol {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
