/* ─── Auth aside – left panel on non-authenticated (login/signup) screens ────── */

.auth-aside {
    background: transparent;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    color: var(--bs-body-color);
    flex-direction: column;
    flex: 1;
    align-self: stretch;
    height: 100vh;
    padding: 2.5rem 3rem;
    position: relative;
    overflow-y: auto;
}

/* ─── Co-brand pills ─────────────────────────────────────────────────────────── */

.auth-cobrand-pill-nxtm,
.auth-cobrand-pill-nxtlx {
    background: #e9ecef;
    color: #fff;
    width: 90px;
    justify-content: center;
    transition: background 0.2s ease;
}

.auth-cobrand-pill-nxtm:hover  { background: var(--brand-nxtm); }
.auth-cobrand-pill-nxtlx:hover { background: var(--brand-nxtlx); }

.auth-cobrand-pill-nxtm:hover .auth-cobrand-logo,
.auth-cobrand-pill-nxtlx:hover .auth-cobrand-logo {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* ─── Headline + lede ────────────────────────────────────────────────────────── */

.auth-aside-headline {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #181c32;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.auth-aside-lede {
    color: #5e6278;
    font-size: 1.2rem;
    line-height: 1.65;
    margin-bottom: 3rem;
}

/* ─── Slide card ─────────────────────────────────────────────────────────────── */

#auth-slides {
    display: grid;
}

.auth-aside-slide {
    grid-area: 1 / 1;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 24px rgba(24, 28, 50, 0.08);
    padding: 1.5rem 1.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.auth-aside-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.auth-slide-tag {
    margin-bottom: 0.875rem;
}

.auth-slide-tag-nxtm  { background: var(--brand-nxtm); color: #fff; }
.auth-slide-tag-nxtlx { background: var(--brand-nxtlx); color: #fff; }

.auth-slide-headline {
    font-size: 1.4rem;
    font-weight: 700;
    color: #181c32;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.auth-slide-body {
    font-size: 1rem;
    color: #5e6278;
    line-height: 1.65;
    margin: 0;
}

/* ─── Slide icon ─────────────────────────────────────────────────────────────── */

.auth-slide-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(24, 28, 50, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.auth-slide-icon-nxtm  { color: var(--brand-nxtm); }
.auth-slide-icon-nxtlx { color: var(--brand-nxtlx); }

/* ─── Rotator: numbered dots + next ─────────────────────────────────────────── */

.auth-aside-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.auth-dot {
    background: none;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(24, 28, 50, 0.3);
    cursor: pointer;
    letter-spacing: 0.03em;
    font-family: inherit;
    transition: color 0.2s;
}

.auth-dot.active {
    font-weight: 700;
    color: #181c32;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
}

.auth-dot-nxtm.active  { color: var(--brand-nxtm); }
.auth-dot-nxtlx.active { color: var(--brand-nxtlx); }

.auth-aside-next {
    background: none;
    border: none;
    padding: 0;
    color: #7e8299;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.15s;
}

.auth-aside-next:hover {
    color: #181c32;
}
