/* ============================================
   AI精准获客模型平台 - 全局样式
   烟台创想企服数字科技有限公司
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

/* 登录页 */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0e27;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    overflow: hidden;
    position: relative;
}

.login-page::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.10) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    animation: loginBgPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes loginBgPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.login-container {
    position: relative;
    z-index: 1;
    display: flex;
    width: 960px;
    min-height: 580px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(59, 130, 246, 0.12);
}

.login-brand {
    flex: 1;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.login-brand::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.login-brand::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.brand-content { position: relative; z-index: 1; }

.brand-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.35);
}
.brand-logo img { display: block; filter: brightness(0) invert(1); }

.brand-title {
    font-size: 26px;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.brand-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 36px;
    letter-spacing: 1px;
}

.brand-features { list-style: none; }

.brand-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #cbd5e1;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brand-features li:last-child { border-bottom: none; }

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
    flex-shrink: 0;
}

.brand-footer {
    position: relative;
    z-index: 1;
    color: #64748b;
    font-size: 12px;
    line-height: 1.8;
}

.brand-footer .company { color: #94a3b8; font-weight: 500; }

.login-form-panel {
    flex: 1;
    background: #ffffff;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-header { margin-bottom: 36px; }

.login-form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.login-form-header p {
    font-size: 14px;
    color: #94a3b8;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.3px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.25s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    line-height: 0;
}
.input-icon-wrapper .input-icon img { display: block; }

.input-icon-wrapper input {
    padding-left: 46px !important;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #3b82f6;
    cursor: pointer;
}

.forgot-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-link:hover { color: #2563eb; }

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}

.login-btn:active { transform: translateY(0); }

.login-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.login-btn .btn-loading-dots {
    display: none;
}

.login-btn.loading .btn-loading-dots { display: inline; }
.login-btn.loading .btn-text { display: none; }

.login-tips {
    text-align: center;
    margin-top: 24px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

.login-tips p { font-size: 12px; color: #94a3b8; margin: 2px 0; }
.login-tips .tip-highlight { color: #3b82f6; font-weight: 600; }

.login-form-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.login-form-footer p {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.8;
}

.login-form-footer .cp-company { color: #64748b; font-weight: 500; }

.login-alert {
    padding: 13px 16px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-alert.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.login-alert.warning {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.login-alert.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.login-alert .alert-icon { flex-shrink: 0; line-height: 0; }

.login-header {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}
.login-header h1 { font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.login-subtitle { font-size: 14px; opacity: 0.9; }
.login-box {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.login-info {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}
.login-footer {
    text-align: center;
    margin-top: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

/* 装饰粒子 */
.login-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.login-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* 表单 */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26,115,232,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-inline { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.form-inline .form-group { margin-bottom: 0; }

/* 按钮 */
.btn {
    display: inline-block;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-primary { background: #1a73e8; color: #fff; }
.btn-primary:hover { background: #1557b0; }
.btn-success { background: #34a853; color: #fff; }
.btn-success:hover { background: #2d9249; }
.btn-danger { background: #ea4335; color: #fff; }
.btn-danger:hover { background: #d33426; }
.btn-warning { background: #fbbc04; color: #333; }
.btn-warning:hover { background: #e0a800; }
.btn-outline { background: #fff; color: #1a73e8; border: 1px solid #1a73e8; }
.btn-outline:hover { background: #e8f0fe; }
.btn-sm { padding: 4px 12px; font-size: 12px; }
.btn-block { display: block; width: 100%; padding: 12px; font-size: 16px; }

/* 警告提示 */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-error { background: #fce8e6; color: #c5221f; border: 1px solid #f5c6c0; }
.alert-success { background: #e6f4ea; color: #137333; border: 1px solid #ceead6; }
.alert-warning { background: #fef7e0; color: #b06000; border: 1px solid #feefc3; }
.alert-info { background: #e8f0fe; color: #1967d2; border: 1px solid #c5d9f7; }

/* 后台布局 */
.admin-body { overflow-x: hidden; }
.admin-wrapper { display: flex; flex-wrap: wrap; min-height: 100vh; }

/* 顶栏 */
.admin-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-logo { font-size: 18px; font-weight: 600; color: #1a73e8; }
.topbar-version { font-size: 12px; color: #999; background: #f0f0f0; padding: 2px 8px; border-radius: 4px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-user { font-size: 14px; color: #555; }
.topbar-role { font-size: 12px; color: #1a73e8; background: #e8f0fe; padding: 2px 8px; border-radius: 4px; margin-right: 8px; }
.topbar-logout { font-size: 13px; color: #999; text-decoration: none; }
.topbar-logout:hover { color: #ea4335; }

.project-switcher { position: relative; }
.project-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(147,52,230,0.1);
    color: #9334e6;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
}
.project-switcher-btn:hover { background: rgba(147,52,230,0.18); }
.project-switcher-arrow { font-size: 10px; transition: transform 0.2s; }
.project-switcher-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    width: 260px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
    overflow: hidden;
}
.project-switcher-dropdown.open { display: block; }
.project-switcher-search { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; }
.project-switcher-search input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
}
.project-switcher-search input:focus { border-color: #1a73e8; }
.project-switcher-list { max-height: 280px; overflow-y: auto; }
.project-switcher-item {
    padding: 9px 14px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.project-switcher-item:hover { background: #f5f5f5; }
.project-switcher-item.active { background: #e8f0fe; color: #1a73e8; font-weight: 600; }

/* 侧边栏 */
.admin-sidebar {
    position: fixed;
    top: 56px;
    left: 0;
    bottom: 0;
    width: 220px;
    background: #fff;
    border-right: 1px solid #e8e8e8;
    overflow-y: auto;
    z-index: 90;
    padding: 16px 0;
}
.sidebar-nav { padding: 0 12px; }
.sidebar-group { margin-bottom: 12px; }
.sidebar-group-title {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px 4px;
    font-weight: 600;
}
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 2px;
}
.sidebar-item:hover { background: #f5f7fa; color: #1a73e8; }
.sidebar-item.active { background: #e8f0fe; color: #1a73e8; font-weight: 600; }
.sidebar-icon { }
.sidebar-icon img { display: block; }

/* 主内容区 */
.admin-main {
    margin-left: 220px;
    margin-top: 56px;
    padding: 24px;
    flex: 1;
    min-height: calc(100vh - 56px);
}

/* 页面标题 */
.page-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.page-subtitle { font-size: 13px; color: #999; margin-bottom: 24px; }

/* 卡片 */
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-header h3 { font-size: 16px; font-weight: 600; color: #333; }
.card-body { padding: 20px; }
.card-footer { padding: 12px 20px; border-top: 1px solid #f0f0f0; }

/* 统计指标卡 */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon img { display: block; }
.stat-icon.blue { background: #e8f0fe; color: #1a73e8; }
.stat-icon.green { background: #e6f4ea; color: #34a853; }
.stat-icon.orange { background: #fef7e0; color: #f9ab00; }
.stat-icon.red { background: #fce8e6; color: #ea4335; }
.stat-icon.purple { background: #f3e8fd; color: #9334e6; }
.stat-info { flex: 1; }
.stat-value { font-size: 28px; font-weight: 700; color: #1a1a1a; line-height: 1.2; }
.stat-label { font-size: 13px; color: #999; margin-top: 4px; }
.stat-change { font-size: 12px; margin-top: 2px; }
.stat-change.up { color: #34a853; }
.stat-change.down { color: #ea4335; }

/* 图表容器 */
.chart-container { width: 100%; height: 350px; }
.chart-container.tall { height: 450px; }
.chart-container.short { height: 280px; }

/* 网格布局 */
.row { display: flex; gap: 20px; flex-wrap: wrap; }
.col-half { flex: 1; min-width: 400px; }
.col-third { flex: 1; min-width: 280px; }
.col-two-third { flex: 2; min-width: 500px; }

/* 表格 */
.table-container { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
table th, table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
table th {
    background: #fafafa;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}
table tbody tr:hover { background: #fafbfc; }
table td { color: #333; }

/* 分页 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 20px;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    color: #555;
    border: 1px solid #e8e8e8;
}
.pagination a:hover { background: #e8f0fe; border-color: #1a73e8; color: #1a73e8; }
.pagination .active { background: #1a73e8; color: #fff; border-color: #1a73e8; }
.pagination .disabled { color: #ccc; cursor: not-allowed; }

/* 标签 */
.tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}
.tag-blue { background: #e8f0fe; color: #1a73e8; }
.tag-green { background: #e6f4ea; color: #34a853; }
.tag-orange { background: #fef7e0; color: #e37400; }
.tag-red { background: #fce8e6; color: #ea4335; }
.tag-purple { background: #f3e8fd; color: #9334e6; }

.tag-input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    min-height: 38px;
    cursor: text;
}
.tag-input:focus-within { border-color: #1a73e8; box-shadow: 0 0 0 2px rgba(26,115,232,0.15); }
.tag-input-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}
.tag-remove {
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: #1a73e8;
    opacity: 0.6;
}
.tag-remove:hover { opacity: 1; }
.tag-input-field {
    flex: 1;
    min-width: 120px;
    border: none;
    outline: none;
    font-size: 13px;
    padding: 2px 0;
    background: transparent;
}

/* 搜索框 */
.search-box { display: flex; gap: 8px; align-items: center; }
.search-box input {
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    width: 240px;
}
.search-box input:focus { outline: none; border-color: #1a73e8; }

/* 过滤器 */
.filter-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* 进度条 */
.progress-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar .progress-fill {
    height: 100%;
    border-radius: 4px;
    background: #1a73e8;
    transition: width 0.3s;
}
.progress-fill.green { background: #34a853; }
.progress-fill.orange { background: #f9ab00; }
.progress-fill.red { background: #ea4335; }

/* 模态框 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.modal-box::-webkit-scrollbar { display: none; }
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.modal-header h3 { font-size: 18px; font-weight: 600; }
.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}
.modal-footer { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; }

/* 空状态 */
.empty-state { text-align: center; padding: 40px 20px; color: #999; }
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }

/* 响应式 */
@media (max-width: 1024px) {
    .login-container {
        width: 90%;
        flex-direction: column;
        min-height: auto;
    }
    .login-brand {
        padding: 40px 32px;
        text-align: center;
    }
    .brand-logo { margin: 0 auto 28px; }
    .brand-features { display: none; }
    .brand-footer { text-align: center; }
    .login-form-panel { padding: 40px 32px; }
}

@media (max-width: 768px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .row { flex-direction: column; }
    .col-half, .col-third, .col-two-third { min-width: 100%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .login-container { width: 94%; border-radius: 16px; }
    .login-brand { padding: 32px 24px; }
    .brand-title { font-size: 22px; }
    .brand-subtitle { font-size: 11px; }
    .login-form-panel { padding: 32px 24px; }
    .login-form-header { margin-bottom: 24px; }
    .login-form-header h2 { font-size: 20px; }
    .form-options { flex-direction: column; gap: 12px; align-items: flex-start; }
}
