.auth-brand-panel {
    /* Deep blue ramp, matching the portal accent. Kept as literals rather than
       var(--bs-primary): this panel is a brand surface, and it should not flip if a
       user has switched their accent back to light blue. */
    background: linear-gradient(135deg, #0B4F74 0%, #093E5C 45%, #05263a 100%);
    overflow: hidden;
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.auth-brand-panel .auth-brand-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #fff;
    width: 100%;
}

.auth-brand-panel .auth-brand-eyebrow {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 16px;
    letter-spacing: -1.2px;
}

.auth-brand-panel .auth-brand-eyebrow .accent {
    font-weight: 300;
    opacity: 0.85;
}

.auth-brand-panel .auth-brand-tagline {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0 0 22px;
    opacity: 0.9;
    max-width: 480px;
    color: #fff;
}

.auth-brand-panel .auth-brand-body {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
    max-width: 380px;
}

.auth-brand-panel .auth-brand-marks {
    display: flex;
    gap: 18px;
    margin-top: 36px;
    font-size: 12px;
    opacity: 0.75;
}

.auth-brand-panel .auth-brand-marks span::before {
    content: '\2713  ';
}

@media (max-width: 991.98px) {
    .auth-brand-panel .auth-brand-content {
        padding: 40px 30px;
    }
    .auth-brand-panel .auth-brand-eyebrow {
        font-size: 42px;
    }
}

/* Pinned to the bottom corner of the dark panel rather than sitting in the copy, where it
   split the product name from its tagline. Absolute against .auth-brand-panel, which is
   already position:relative for the texture overlay. Inset matches the content padding so
   it lines up with the text above it. */
.auth-brand-panel .auth-brand-version {
    position: absolute;
    right: 60px;
    bottom: 32px;
    z-index: 2;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, 0.6);
    cursor: default;
}

@media (max-width: 991.98px) {
    .auth-brand-panel .auth-brand-version {
        right: 24px;
        bottom: 16px;
    }
}

.auth-brand-panel .auth-brand-version-badge {
    display: inline-block;
    margin-inline-start: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.92);
    color: #0B4F74;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    vertical-align: middle;
}

    .auth-brand-panel .auth-brand-version-badge.d-none {
        display: none;
    }
