/* Auth Hero - Animated Background */

.auth-brand {
    position: relative;
    overflow: hidden;
}

.auth-brand #authCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.auth-brand-content {
    position: relative;
    z-index: 10;
}

/* Stats */
.auth-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.auth-stat {
    text-align: center;
}

.auth-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    font-variant-numeric: tabular-nums;
}

.auth-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    .auth-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .auth-stats {
        display: none;
    }
}
