/**
 * ux3-login.css — Login page specific styles
 * Loaded only on auth/login
 */

/* Brand icon */
.ux3-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--bs-theme-rgb), 0.15);
    font-size: 22px;
    font-weight: 800;
}

/* Login badge */
.ux3-login-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--bs-theme-rgb), 0.12);
    border: 1px solid rgba(var(--bs-theme-rgb), 0.3);
    color: var(--bs-theme);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ux3-login-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-theme);
    animation: ux3-blink 1.8s ease-in-out infinite;
}

@keyframes ux3-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* Stats bar at bottom of login */
.ux3-stat-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 28px;
}

.ux3-stat-bar-item {
    padding: 13px 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.ux3-stat-bar-item .val {
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-theme);
    line-height: 1;
}

.ux3-stat-bar-item .lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.4;
    margin-top: 3px;
}
