:root {
    --bn-shell-bg: #f7fafb;
    --bn-shell-surface: #ffffff;
    --bn-shell-border: #dfe7ed;
    --bn-shell-text: #1f2d36;
    --bn-shell-muted: #667685;
    --bn-shell-primary: #419bc0;
    --bn-shell-primary-soft: #eef8fb;
    --bn-shell-primary-line: #cfe8f2;
    --bn-shell-control-radius: 10px;
    --bn-shell-sidebar-width: 280px;
    --bn-shell-topbar-height: 64px;
    --bn-shell-content-max: 1800px;
}

html,
body {
    min-height: 100%;
}

body.bn-shell-nav-open {
    overflow: hidden;
}

.bn-shell {
    display: grid;
    grid-template-columns: var(--bn-shell-sidebar-width) minmax(0, 1fr);
    min-height: 100vh;
    background: var(--bn-shell-bg);
    color: var(--bn-shell-text);
}

.bn-shell *,
.bn-shell *::before,
.bn-shell *::after {
    box-sizing: border-box;
}

.bn-shell-backdrop {
    display: none;
}

.bn-shell-sidebar {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    border-right: 1px solid var(--bn-shell-border);
    background: var(--bn-shell-surface);
    padding: 18px 14px 14px;
    overflow: hidden;
}

.bn-shell-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-height: 56px;
    margin: 0 2px 14px;
    padding: 0 4px 16px;
    border-bottom: 1px solid var(--bn-shell-border);
}

.bn-shell-nav-close {
    display: none;
}

.bn-shell-logo img {
    max-width: 190px;
    max-height: 52px;
    object-fit: contain;
}

.bn-shell-nav {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 4px 2px 2px;
    scrollbar-color: var(--bn-shell-primary-line) transparent;
    scrollbar-width: thin;
}

.bn-shell-nav::-webkit-scrollbar {
    width: 8px;
}

.bn-shell-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--bn-shell-primary-line);
}

.bn-shell-nav::-webkit-scrollbar-track {
    background: transparent;
}

.bn-ddr-menu {
    display: grid;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bn-ddr-menu .bn-ddr-menu {
    margin: 2px 0 6px 12px;
    padding-left: 8px;
}

.bn-ddr-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.bn-ddr-menu-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-radius: 8px;
    transition: background-color .15s ease;
}

.bn-ddr-menu a,
.bn-ddr-menu-label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    color: var(--bn-shell-text);
    padding: 8px 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    transition: color .15s ease;
}

.bn-ddr-menu-row:hover,
.bn-ddr-menu li.is-selected > .bn-ddr-menu-row,
.bn-ddr-menu li.is-breadcrumb > .bn-ddr-menu-row {
    background: var(--bn-shell-primary-soft);
}

.bn-ddr-menu a:hover,
.bn-ddr-menu a:focus,
.bn-ddr-menu li.is-selected > .bn-ddr-menu-row > a,
.bn-ddr-menu li.is-breadcrumb > .bn-ddr-menu-row > a {
    color: var(--bn-shell-primary);
    outline: 0;
}

.bn-ddr-menu li.is-selected > .bn-ddr-menu-row,
.bn-ddr-menu li.is-breadcrumb > .bn-ddr-menu-row {
    box-shadow: inset 3px 0 0 var(--bn-shell-primary);
}

.bn-ddr-menu li.is-disabled {
    opacity: .6;
}

.bn-ddr-menu-icon {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.bn-ddr-menu-fa {
    flex: 0 0 auto;
    width: 18px;
    color: var(--bn-shell-muted);
    font-size: 15px;
    text-align: center;
}

.bn-ddr-menu-row:hover .bn-ddr-menu-fa,
.bn-ddr-menu li.is-selected > .bn-ddr-menu-row .bn-ddr-menu-fa,
.bn-ddr-menu li.is-breadcrumb > .bn-ddr-menu-row .bn-ddr-menu-fa {
    color: var(--bn-shell-primary);
}

.bn-ddr-menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-right: 4px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--bn-shell-muted);
    cursor: pointer;
}

.bn-ddr-menu-toggle::before {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .15s ease;
    content: "";
}

.bn-ddr-menu-toggle:hover,
.bn-ddr-menu-toggle:focus {
    background: rgba(65, 155, 192, .12);
    color: var(--bn-shell-primary);
    outline: 0;
}

.bn-ddr-menu-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.bn-ddr-menu li.is-collapsed > .bn-ddr-menu {
    display: none;
}

.bn-ddr-menu li.is-collapsed > .bn-ddr-menu-row .bn-ddr-menu-toggle::before {
    transform: rotate(-45deg);
}

.bn-ddr-menu-empty {
    border: 1px dashed var(--bn-shell-border);
    border-radius: 8px;
    color: var(--bn-shell-muted);
    padding: 12px;
    font-size: 14px;
}

.bn-shell-main {
    min-width: 0;
}

.bn-shell-topbar {
    position: sticky;
    top: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--bn-shell-topbar-height);
    border-bottom: 1px solid var(--bn-shell-border);
    background: rgba(255, 255, 255, .96);
    padding: 0 24px;
}

.bn-shell-topbar-start {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.bn-shell-menu-button {
    display: none;
}

.bn-shell-mobile-logo {
    display: none;
}

.bn-shell-breadcrumbs {
    min-width: 0;
    overflow: hidden;
    color: var(--bn-shell-muted);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bn-shell-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
    white-space: nowrap;
}

.bn-shell-credits {
    min-width: 0;
}

.bn-shell-credits:empty {
    display: none;
}

.bn-shell-credits #bn-credits-viewer,
.bn-shell-credits .DnnModule {
    margin: 0;
}

.bn-shell-credits #bn-credits-viewer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid var(--bn-shell-border);
    border-radius: var(--bn-shell-control-radius);
    background: #ffffff;
    color: var(--bn-shell-text);
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.bn-shell-account {
    position: relative;
    flex: 0 0 auto;
}

.bn-shell-account-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 40px;
    border: 1px solid var(--bn-shell-border);
    border-radius: var(--bn-shell-control-radius);
    background: #ffffff;
    color: var(--bn-shell-text);
    padding: 0 16px;
    text-decoration: none;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

.bn-shell-account-button {
    min-width: 132px;
    padding: 3px 14px 3px 4px;
}

.bn-shell-account-login-standalone,
.bn-shell-account-login-standalone > span {
    display: inline-flex;
    align-items: center;
}

.bn-shell-account-login-standalone a,
.bn-shell-account-login-standalone a:link,
.bn-shell-account-login-standalone a:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid var(--bn-shell-border);
    border-radius: var(--bn-shell-control-radius) !important;
    background: #ffffff;
    color: var(--bn-shell-text);
    padding: 0 12px !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.bn-shell-account-button:hover,
.bn-shell-account-button:focus,
.bn-shell-account.is-open .bn-shell-account-button,
.bn-shell-account-login-standalone a:hover,
.bn-shell-account-login-standalone a:focus {
    border-color: var(--bn-shell-primary-line);
    background: var(--bn-shell-primary-soft);
    color: var(--bn-shell-primary);
    outline: 0;
}

.bn-shell-account-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    object-fit: cover;
    background: var(--bn-shell-primary-soft);
}

.bn-shell-account-label {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bn-shell-account-chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.bn-shell-account-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 140;
    display: none;
    width: 240px;
    border: 1px solid var(--bn-shell-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(31, 45, 54, .14);
    padding: 8px;
}

.bn-shell-account.is-open .bn-shell-account-menu {
    display: block;
}

.bn-shell-account-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
}

.bn-shell-account-summary strong,
.bn-shell-account-summary small {
    display: block;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bn-shell-account-summary strong {
    color: var(--bn-shell-text);
    font-size: 14px;
}

.bn-shell-account-summary small {
    color: var(--bn-shell-muted);
    font-size: 12px;
}

.bn-shell-account-menu a,
.bn-shell-account-login a {
    display: flex;
    align-items: center;
    min-height: 38px;
    border-radius: 7px;
    color: var(--bn-shell-text);
    padding: 8px 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.bn-shell-account-menu a:hover,
.bn-shell-account-menu a:focus,
.bn-shell-account-login a:hover,
.bn-shell-account-login a:focus {
    background: var(--bn-shell-primary-soft);
    color: var(--bn-shell-primary);
    outline: 0;
}

.bn-shell-account-divider {
    height: 1px;
    margin: 6px 4px;
    background: var(--bn-shell-border);
}

.bn-shell-content {
    min-width: 0;
    width: min(100%, var(--bn-shell-content-max));
    margin: 0 auto;
    padding: 24px;
}

.bn-pane-main {
    min-width: 0;
}

body.bn-auth-page .bn-shell-content {
    display: grid;
    align-items: center;
    min-height: calc(100vh - var(--bn-shell-topbar-height));
    width: min(100%, 1220px);
    padding: 34px;
}

body.bn-auth-page .bn-pane-main {
    display: grid;
    grid-template-columns: minmax(260px, .88fr) minmax(340px, 480px);
    gap: 28px;
    align-items: stretch;
    width: 100%;
}

body.bn-auth-page .bn-pane-main::before {
    display: block;
    min-height: 520px;
    border: 1px solid rgba(65, 155, 192, .22);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(65, 155, 192, .14), rgba(38, 83, 108, .08)),
        radial-gradient(circle at 28% 28%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 34%),
        linear-gradient(160deg, #f7fbfc 0%, #dcecf1 48%, #f8f2eb 100%);
    background-color: #e8f3f6;
    background-position: center;
    background-size: cover;
    box-shadow: 0 22px 52px rgba(31, 45, 54, .1);
    content: "";
}

body.bn-auth-page .bn-pane-main > .DnnModule {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
}

body.bn-auth-page .bn-pane-main > .DnnModule > div,
body.bn-auth-page .DNNModuleContent,
body.bn-auth-page .dnnForm,
body.bn-auth-page .LoginPanel,
body.bn-auth-page .dnnLoginService {
    width: 100%;
}

body.bn-auth-page .DNNModuleContent,
body.bn-auth-page .dnnForm,
body.bn-auth-page .LoginPanel,
body.bn-auth-page .dnnLoginService,
body.bn-auth-page .dnnPasswordResetContent {
    border: 1px solid var(--bn-shell-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(31, 45, 54, .12);
}

body.bn-auth-page .DNNModuleContent > *,
body.bn-auth-page .dnnForm,
body.bn-auth-page .LoginPanel,
body.bn-auth-page .dnnLoginService,
body.bn-auth-page .dnnPasswordResetContent {
    padding: 28px;
}

body.bn-auth-page .DNNModuleContent .dnnForm,
body.bn-auth-page .DNNModuleContent .LoginPanel,
body.bn-auth-page .DNNModuleContent .dnnLoginService,
body.bn-auth-page .DNNModuleContent .dnnPasswordResetContent {
    border: 0;
    box-shadow: none;
    padding: 0;
}

body.bn-auth-page h1,
body.bn-auth-page h2,
body.bn-auth-page h3,
body.bn-auth-page .Head,
body.bn-auth-page .SubHead {
    margin: 0 0 14px;
    color: var(--bn-shell-text);
    font-size: 24px;
    font-weight: 750;
    line-height: 1.16;
}

body.bn-auth-page .Normal,
body.bn-auth-page .dnnFormItem,
body.bn-auth-page .dnnFormMessage,
body.bn-auth-page label,
body.bn-auth-page .dnnLabel,
body.bn-auth-page .dnnFormLabel {
    color: var(--bn-shell-muted);
    font-size: 14px;
    line-height: 1.45;
}

body.bn-auth-page .dnnFormItem {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
}

body.bn-auth-page .dnnLabel,
body.bn-auth-page .dnnFormLabel,
body.bn-auth-page label {
    display: block;
    margin: 0;
    color: var(--bn-shell-text);
    font-weight: 650;
}

body.bn-auth-page .dnnLabel .dnnFormHelp,
body.bn-auth-page .dnnTooltip {
    display: none;
}

body.bn-auth-page input[type="text"],
body.bn-auth-page input[type="email"],
body.bn-auth-page input[type="password"],
body.bn-auth-page select,
body.bn-auth-page textarea,
body.bn-auth-page .NormalTextBox,
body.bn-auth-page .dnnFormInput {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--bn-shell-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--bn-shell-text);
    padding: 10px 12px;
    font: inherit;
    font-size: 15px;
    line-height: 1.35;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

body.bn-auth-page input[type="text"]:focus,
body.bn-auth-page input[type="email"]:focus,
body.bn-auth-page input[type="password"]:focus,
body.bn-auth-page select:focus,
body.bn-auth-page textarea:focus,
body.bn-auth-page .NormalTextBox:focus,
body.bn-auth-page .dnnFormInput:focus {
    border-color: var(--bn-shell-primary);
    box-shadow: 0 0 0 3px rgba(65, 155, 192, .16);
    outline: 0;
}

body.bn-auth-page input[type="checkbox"],
body.bn-auth-page input[type="radio"] {
    width: 17px;
    height: 17px;
    accent-color: var(--bn-shell-primary);
}

body.bn-auth-page .dnnPrimaryAction,
body.bn-auth-page a.dnnPrimaryAction,
body.bn-auth-page button.dnnPrimaryAction,
body.bn-auth-page input[type="submit"],
body.bn-auth-page input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    border: 1px solid var(--bn-shell-primary);
    border-radius: 8px;
    background: var(--bn-shell-primary);
    color: #ffffff;
    padding: 10px 16px;
    text-decoration: none;
    font: inherit;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.1;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

body.bn-auth-page .dnnPrimaryAction:hover,
body.bn-auth-page .dnnPrimaryAction:focus,
body.bn-auth-page a.dnnPrimaryAction:hover,
body.bn-auth-page a.dnnPrimaryAction:focus,
body.bn-auth-page button.dnnPrimaryAction:hover,
body.bn-auth-page button.dnnPrimaryAction:focus,
body.bn-auth-page input[type="submit"]:hover,
body.bn-auth-page input[type="submit"]:focus,
body.bn-auth-page input[type="button"]:hover,
body.bn-auth-page input[type="button"]:focus {
    border-color: #2f83a7;
    background: #2f83a7;
    box-shadow: 0 10px 24px rgba(65, 155, 192, .22);
    outline: 0;
}

body.bn-auth-page .dnnSecondaryAction,
body.bn-auth-page a.dnnSecondaryAction,
body.bn-auth-page .dnnActions a:not(.dnnPrimaryAction),
body.bn-auth-page .dnnLoginActions a {
    color: var(--bn-shell-primary);
    text-decoration: none;
    font-weight: 700;
}

body.bn-auth-page .dnnSecondaryAction:hover,
body.bn-auth-page .dnnSecondaryAction:focus,
body.bn-auth-page a.dnnSecondaryAction:hover,
body.bn-auth-page a.dnnSecondaryAction:focus,
body.bn-auth-page .dnnActions a:not(.dnnPrimaryAction):hover,
body.bn-auth-page .dnnActions a:not(.dnnPrimaryAction):focus,
body.bn-auth-page .dnnLoginActions a:hover,
body.bn-auth-page .dnnLoginActions a:focus {
    color: #2f83a7;
    text-decoration: underline;
    outline: 0;
}

body.bn-auth-page .dnnActions,
body.bn-auth-page .dnnLoginActions {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

body.bn-auth-page .dnnActions li,
body.bn-auth-page .dnnLoginActions li {
    margin: 0;
    padding: 0;
}

body.bn-auth-page .dnnFormMessage,
body.bn-auth-page .dnnFormValidationSummary,
body.bn-auth-page .dnnFormError,
body.bn-auth-page .dnnFormSuccess,
body.bn-auth-page .dnnFormWarning {
    border-radius: 8px;
    margin: 0 0 16px;
    padding: 12px 14px;
}

body.bn-auth-page .dnnFormError,
body.bn-auth-page .dnnFormValidationSummary {
    border: 1px solid #f0c4bd;
    background: #fff4f2;
    color: #8a352a;
}

body.bn-auth-page .dnnFormSuccess {
    border: 1px solid #c9e7d6;
    background: #f1fbf5;
    color: #1f6b45;
}

body.bn-auth-page .dnnFormWarning {
    border: 1px solid #ead7a2;
    background: #fff9e8;
    color: #72571a;
}

body.bn-auth-page .DnnModule .title,
body.bn-auth-page .DnnModule .c_head,
body.bn-auth-page .DnnModule .NormalRed {
    margin-bottom: 12px;
}

.bn-auth-shell {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(65, 155, 192, .12), rgba(255, 255, 255, 0) 42%),
        linear-gradient(160deg, #f7fafb 0%, #eef6f8 48%, #f8f2eb 100%);
    color: var(--bn-shell-text);
}

.bn-auth-shell *,
.bn-auth-shell *::before,
.bn-auth-shell *::after {
    box-sizing: border-box;
}

.bn-auth-stage {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(360px, 480px);
    gap: 28px;
    align-items: stretch;
    width: min(100% - 40px, 1180px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 40px 0;
}

.bn-auth-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 560px;
    border: 1px solid rgba(65, 155, 192, .22);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(31, 45, 54, .82), rgba(31, 45, 54, .44)),
        radial-gradient(circle at 22% 24%, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0) 30%),
        linear-gradient(160deg, #67b2ce 0%, #2f6f8d 54%, #f1d5bd 100%);
    box-shadow: 0 22px 52px rgba(31, 45, 54, .12);
    overflow: hidden;
    padding: 28px;
}

.bn-auth-brand::after {
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    content: "";
}

.bn-auth-logo {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 230px;
    min-height: 52px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    padding: 10px 14px;
}

.bn-auth-logo img {
    display: block;
    max-width: 198px;
    max-height: 44px;
    object-fit: contain;
}

.bn-auth-brand-copy {
    position: relative;
    z-index: 1;
    max-width: 560px;
    color: #ffffff;
}

.bn-auth-kicker {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bn-auth-brand h1 {
    max-width: 560px;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 780;
    line-height: 1.04;
}

.bn-auth-brand p {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 17px;
    line-height: 1.55;
}

.bn-auth-card {
    display: flex;
    align-items: center;
    width: 100%;
}

.bn-auth-pane,
.bn-auth-pane > .DnnModule,
.bn-auth-pane > .DnnModule > div,
.bn-auth-pane .DNNModuleContent,
.bn-auth-pane .dnnForm,
.bn-auth-pane .LoginPanel,
.bn-auth-pane .dnnLoginService,
.bn-auth-pane .dnnPasswordResetContent {
    width: 100%;
}

.bn-auth-pane > .DnnModule {
    margin: 0;
}

.bn-auth-pane .DNNModuleContent,
.bn-auth-pane .dnnForm,
.bn-auth-pane .LoginPanel,
.bn-auth-pane .dnnLoginService,
.bn-auth-pane .dnnPasswordResetContent {
    border: 1px solid var(--bn-shell-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(31, 45, 54, .12);
}

.bn-auth-pane .DNNModuleContent > *,
.bn-auth-pane .dnnForm,
.bn-auth-pane .LoginPanel,
.bn-auth-pane .dnnLoginService,
.bn-auth-pane .dnnPasswordResetContent {
    padding: 30px;
}

.bn-auth-pane .DNNModuleContent .dnnForm,
.bn-auth-pane .DNNModuleContent .LoginPanel,
.bn-auth-pane .DNNModuleContent .dnnLoginService,
.bn-auth-pane .DNNModuleContent .dnnPasswordResetContent {
    border: 0;
    box-shadow: none;
    padding: 0;
}

.bn-auth-pane h1,
.bn-auth-pane h2,
.bn-auth-pane h3,
.bn-auth-pane .Head,
.bn-auth-pane .SubHead {
    margin: 0 0 14px;
    color: var(--bn-shell-text);
    font-size: 24px;
    font-weight: 750;
    line-height: 1.16;
}

.bn-auth-pane .Normal,
.bn-auth-pane .dnnFormItem,
.bn-auth-pane .dnnFormMessage,
.bn-auth-pane label,
.bn-auth-pane .dnnLabel,
.bn-auth-pane .dnnFormLabel {
    color: var(--bn-shell-muted);
    font-size: 14px;
    line-height: 1.45;
}

.bn-auth-pane .dnnFormItem {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
}

.bn-auth-pane .dnnLabel,
.bn-auth-pane .dnnFormLabel,
.bn-auth-pane label {
    display: block;
    margin: 0;
    color: var(--bn-shell-text);
    font-weight: 650;
}

.bn-auth-pane .dnnLabel .dnnFormHelp,
.bn-auth-pane .dnnTooltip {
    display: none;
}

.bn-auth-pane input[type="text"],
.bn-auth-pane input[type="email"],
.bn-auth-pane input[type="password"],
.bn-auth-pane select,
.bn-auth-pane textarea,
.bn-auth-pane .NormalTextBox,
.bn-auth-pane .dnnFormInput {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--bn-shell-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--bn-shell-text);
    padding: 10px 12px;
    font: inherit;
    font-size: 15px;
    line-height: 1.35;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.bn-auth-pane input[type="text"]:focus,
.bn-auth-pane input[type="email"]:focus,
.bn-auth-pane input[type="password"]:focus,
.bn-auth-pane select:focus,
.bn-auth-pane textarea:focus,
.bn-auth-pane .NormalTextBox:focus,
.bn-auth-pane .dnnFormInput:focus {
    border-color: var(--bn-shell-primary);
    box-shadow: 0 0 0 3px rgba(65, 155, 192, .16);
    outline: 0;
}

.bn-auth-pane input[type="checkbox"],
.bn-auth-pane input[type="radio"] {
    width: 17px;
    height: 17px;
    accent-color: var(--bn-shell-primary);
}

.bn-auth-pane .dnnPrimaryAction,
.bn-auth-pane a.dnnPrimaryAction,
.bn-auth-pane button.dnnPrimaryAction,
.bn-auth-pane input[type="submit"],
.bn-auth-pane input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    border: 1px solid var(--bn-shell-primary);
    border-radius: 8px;
    background: var(--bn-shell-primary);
    color: #ffffff;
    padding: 10px 16px;
    text-decoration: none;
    font: inherit;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.1;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.bn-auth-pane .dnnPrimaryAction:hover,
.bn-auth-pane .dnnPrimaryAction:focus,
.bn-auth-pane a.dnnPrimaryAction:hover,
.bn-auth-pane a.dnnPrimaryAction:focus,
.bn-auth-pane button.dnnPrimaryAction:hover,
.bn-auth-pane button.dnnPrimaryAction:focus,
.bn-auth-pane input[type="submit"]:hover,
.bn-auth-pane input[type="submit"]:focus,
.bn-auth-pane input[type="button"]:hover,
.bn-auth-pane input[type="button"]:focus {
    border-color: #2f83a7;
    background: #2f83a7;
    box-shadow: 0 10px 24px rgba(65, 155, 192, .22);
    outline: 0;
}

.bn-auth-pane .dnnSecondaryAction,
.bn-auth-pane a.dnnSecondaryAction,
.bn-auth-pane .dnnActions a:not(.dnnPrimaryAction),
.bn-auth-pane .dnnLoginActions a {
    color: var(--bn-shell-primary);
    text-decoration: none;
    font-weight: 700;
}

.bn-auth-pane .dnnSecondaryAction:hover,
.bn-auth-pane .dnnSecondaryAction:focus,
.bn-auth-pane a.dnnSecondaryAction:hover,
.bn-auth-pane a.dnnSecondaryAction:focus,
.bn-auth-pane .dnnActions a:not(.dnnPrimaryAction):hover,
.bn-auth-pane .dnnActions a:not(.dnnPrimaryAction):focus,
.bn-auth-pane .dnnLoginActions a:hover,
.bn-auth-pane .dnnLoginActions a:focus {
    color: #2f83a7;
    text-decoration: underline;
    outline: 0;
}

.bn-auth-pane .dnnActions,
.bn-auth-pane .dnnLoginActions {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.bn-auth-pane .dnnActions li,
.bn-auth-pane .dnnLoginActions li {
    margin: 0;
    padding: 0;
}

.bn-auth-pane .dnnFormMessage,
.bn-auth-pane .dnnFormValidationSummary,
.bn-auth-pane .dnnFormError,
.bn-auth-pane .dnnFormSuccess,
.bn-auth-pane .dnnFormWarning {
    border-radius: 8px;
    margin: 0 0 16px;
    padding: 12px 14px;
}

.bn-auth-pane .dnnFormError,
.bn-auth-pane .dnnFormValidationSummary {
    border: 1px solid #f0c4bd;
    background: #fff4f2;
    color: #8a352a;
}

.bn-auth-pane .dnnFormSuccess {
    border: 1px solid #c9e7d6;
    background: #f1fbf5;
    color: #1f6b45;
}

.bn-auth-pane .dnnFormWarning {
    border: 1px solid #ead7a2;
    background: #fff9e8;
    color: #72571a;
}

.bn-auth-pane .ModAuthenticationC,
.bn-auth-pane .dnnLogin,
.bn-auth-pane .loginContent,
.bn-auth-pane .LoginPanel,
.bn-auth-pane .dnnLoginService {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bn-auth-pane .dnnFormItem {
    display: grid !important;
    flex-direction: initial !important;
    gap: 8px !important;
    margin: 0 0 16px !important;
    text-align: left !important;
}

.bn-auth-pane .dnnLabel,
.bn-auth-pane .dnnFormLabel {
    width: auto !important;
    margin: 0 !important;
    color: var(--bn-shell-text) !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    text-align: left !important;
}

.bn-auth-pane .dnnLoginService input[type="text"],
.bn-auth-pane .dnnLoginService input[type="password"] {
    width: 100% !important;
    max-width: none !important;
    min-height: 46px !important;
    border: 1px solid var(--bn-shell-border) !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    color: var(--bn-shell-text) !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
}

.bn-auth-pane .dnnLoginService input[type="text"]:focus,
.bn-auth-pane .dnnLoginService input[type="password"]:focus {
    border-color: var(--bn-shell-primary) !important;
    box-shadow: 0 0 0 3px rgba(65, 155, 192, .16) !important;
    outline: 0 !important;
}

.bn-auth-pane .dnnLoginRememberMe {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    color: var(--bn-shell-muted) !important;
    font-size: 14px !important;
}

.bn-auth-pane .dnnLoginRememberMe input[type="checkbox"] {
    flex: 0 0 auto !important;
    margin: 0 !important;
}

.bn-auth-pane a[id$="_cmdLogin"].dnnPrimaryAction,
.bn-auth-pane .dnnLoginService .dnnPrimaryAction {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 46px !important;
    border: 1px solid var(--bn-shell-primary) !important;
    border-radius: 8px !important;
    background: var(--bn-shell-primary) !important;
    color: #ffffff !important;
    padding: 10px 16px !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.bn-auth-pane a[id$="_cmdLogin"].dnnPrimaryAction:hover,
.bn-auth-pane a[id$="_cmdLogin"].dnnPrimaryAction:focus,
.bn-auth-pane .dnnLoginService .dnnPrimaryAction:hover,
.bn-auth-pane .dnnLoginService .dnnPrimaryAction:focus {
    border-color: #2f83a7 !important;
    background: #2f83a7 !important;
    box-shadow: 0 10px 24px rgba(65, 155, 192, .22) !important;
    color: #ffffff !important;
}

.bn-auth-pane a[id$="_cancelLink"] {
    display: none !important;
}

.bn-auth-pane .dnnLoginActions,
.bn-auth-pane .dnnActions,
.bn-auth-pane .dnnActions ul,
.bn-auth-pane .dnnActions ol {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.bn-auth-pane .dnnLoginActions .dnnActions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.bn-auth-pane .dnnLoginActions li {
    margin: 0 !important;
    padding: 0 !important;
}

.bn-auth-pane a[id$="_passwordLink"].dnnSecondaryAction {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--bn-shell-primary) !important;
    padding: 0 !important;
    text-shadow: none !important;
}

.bn-auth-shell {
    min-height: 100vh;
    background-color: #f6f9fa;
    background-image:
        linear-gradient(90deg, rgba(246, 249, 250, .96) 0%, rgba(246, 249, 250, .88) 42%, rgba(246, 249, 250, .56) 100%),
        url("/Portals/0/Images/Signin.png");
    background-image:
        linear-gradient(90deg, rgba(246, 249, 250, .96) 0%, rgba(246, 249, 250, .88) 42%, rgba(246, 249, 250, .56) 100%),
        image-set(
            url("/Portals/0/Images/Signin.webp") type("image/webp"),
            url("/Portals/0/Images/Signin.png") type("image/png")
        );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--bn-shell-text);
}

.bn-auth-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(100% - 44px, 1120px);
    margin: 0 auto;
    padding: 24px 0 0;
}

.bn-auth-top .bn-auth-logo {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.bn-auth-top .bn-auth-logo img {
    max-width: 210px;
    max-height: 48px;
}

.bn-auth-top-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bn-shell-muted);
    font-size: 14px;
    font-weight: 600;
}

.bn-auth-top-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid var(--bn-shell-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--bn-shell-text);
    padding: 0 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

.bn-auth-top-actions a:hover,
.bn-auth-top-actions a:focus {
    border-color: var(--bn-shell-primary-line);
    background: var(--bn-shell-primary-soft);
    color: var(--bn-shell-primary);
    outline: 0;
}

.bn-auth-stage {
    grid-template-columns: minmax(360px, 470px) minmax(360px, 1fr);
    gap: 28px;
    align-items: center;
    width: min(100% - 44px, 1120px);
    min-height: calc(100vh - 96px);
    padding: 28px 0 44px;
}

.bn-auth-card {
    display: block;
    align-self: center;
    border: 1px solid var(--bn-shell-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(31, 45, 54, .1);
    padding: 30px;
}

.bn-auth-card-copy {
    margin: 0 0 24px;
}

.bn-auth-card-copy .bn-auth-kicker,
.bn-auth-brand-copy .bn-auth-kicker {
    margin: 0 0 10px;
    color: var(--bn-shell-primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bn-auth-card h1 {
    margin: 0 0 8px;
    color: var(--bn-shell-text);
    font-size: 30px;
    font-weight: 780;
    line-height: 1.08;
}

.bn-auth-card p {
    margin: 0;
    color: var(--bn-shell-muted);
    font-size: 15px;
    line-height: 1.5;
}

.bn-auth-verification-notice {
    margin: 0 0 22px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.45;
}

.bn-auth-verification-notice.is-success {
    border: 1px solid rgba(14, 151, 100, .24);
    background: #edf9f4;
    color: #116a4a;
}

.bn-auth-verification-notice.is-warning {
    border: 1px solid rgba(181, 71, 71, .24);
    background: #fffafa;
    color: #7a2f2f;
}

.bn-auth-brand {
    min-height: auto;
    border: 0;
    border-left: 1px solid var(--bn-shell-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    padding: 28px 0 28px 34px;
}

.bn-auth-brand::after {
    display: none;
}

.bn-auth-brand-copy {
    max-width: 390px;
    color: var(--bn-shell-text);
}

.bn-auth-brand h2 {
    max-width: 390px;
    margin: 0 0 8px;
    color: var(--bn-shell-text);
    font-size: 24px;
    font-weight: 780;
    line-height: 1.12;
}

.bn-auth-brand p {
    max-width: 360px;
    margin: 0;
    color: var(--bn-shell-muted);
    font-size: 14px;
    line-height: 1.5;
}

.bn-auth-mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 360px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.bn-auth-mini-points li {
    border: 1px solid var(--bn-shell-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--bn-shell-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 8px 10px;
}

.bn-auth-highlights {
    display: grid;
    gap: 12px;
    max-width: 540px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.bn-auth-highlights li {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
    border-top: 1px solid var(--bn-shell-border);
    padding-top: 12px;
}

.bn-auth-highlights strong {
    color: var(--bn-shell-text);
    font-size: 14px;
    font-weight: 800;
}

.bn-auth-highlights span {
    color: var(--bn-shell-muted);
    font-size: 14px;
    line-height: 1.45;
}

.bn-auth-card .DNNModuleContent,
.bn-auth-card .dnnForm,
.bn-auth-card .LoginPanel,
.bn-auth-card .dnnLoginService,
.bn-auth-card .dnnPasswordResetContent {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.bn-auth-card .DNNModuleContent > *,
.bn-auth-card .dnnForm,
.bn-auth-card .LoginPanel,
.bn-auth-card .dnnLoginService,
.bn-auth-card .dnnPasswordResetContent {
    padding: 0 !important;
}

.bn-auth-card .dnnLoginService input[type="text"],
.bn-auth-card .dnnLoginService input[type="password"] {
    min-height: 50px !important;
    border-radius: 7px !important;
    background: #fbfdfe !important;
}

.bn-auth-card .dnnLoginService input[type="text"]:focus,
.bn-auth-card .dnnLoginService input[type="password"]:focus {
    background: #ffffff !important;
}

.bn-auth-card .dnnLoginRememberMe {
    justify-content: flex-start !important;
    min-height: 24px !important;
}

.bn-auth-card a[id$="_cmdLogin"].dnnPrimaryAction,
.bn-auth-card .dnnLoginService .dnnPrimaryAction {
    min-height: 50px !important;
    border-radius: 7px !important;
    font-size: 15px !important;
}

.bn-auth-card .dnnLoginActions .dnnActions {
    justify-content: flex-start !important;
}

.bn-auth-card a[id$="_passwordLink"].dnnSecondaryAction {
    font-size: 14px !important;
    font-weight: 750 !important;
}

.bn-auth-card.is-reset-requesting .bn-auth-pane {
    display: none;
}

.bn-auth-reset-request {
    margin-top: 8px;
}

.bn-auth-reset-form {
    display: grid;
    gap: 16px;
}

.bn-auth-reset-form label {
    display: grid;
    gap: 7px;
    margin: 0;
    color: var(--bn-shell-text);
    font-size: 13px;
    font-weight: 800;
}

.bn-auth-reset-form input[type="email"] {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--bn-shell-border);
    border-radius: 7px;
    background: #fbfdfe;
    color: var(--bn-shell-text);
    font: inherit;
    font-size: 15px;
    font-weight: 650;
    outline: none;
    padding: 12px 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.bn-auth-reset-form input[type="email"]:focus {
    border-color: rgba(23, 98, 132, .48);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(23, 98, 132, .12);
}

.bn-auth-reset-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bn-auth-reset-actions button {
    min-height: 46px;
    border-radius: 7px;
    border: 1px solid transparent;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 850;
    padding: 11px 16px;
}

.bn-auth-reset-actions [data-bn-reset-submit] {
    border-color: var(--bn-shell-primary) !important;
    background: var(--bn-shell-primary) !important;
    color: #ffffff !important;
}

.bn-auth-reset-actions [data-bn-reset-submit]:hover,
.bn-auth-reset-actions [data-bn-reset-submit]:focus {
    border-color: #2f83a7 !important;
    background: #2f83a7 !important;
    color: #ffffff !important;
}

.bn-auth-reset-actions [data-bn-reset-submit]:disabled {
    cursor: progress;
    opacity: .72;
}

.bn-auth-reset-actions [data-bn-reset-cancel] {
    border-color: var(--bn-shell-border);
    background: #ffffff;
    color: var(--bn-shell-text);
}

.bn-auth-reset-actions [data-bn-reset-cancel]:hover,
.bn-auth-reset-actions [data-bn-reset-cancel]:focus {
    border-color: rgba(255, 90, 31, .34);
    background: rgba(255, 90, 31, .08);
    color: var(--bn-shell-primary);
}

.bn-auth-reset-message {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.45;
    padding: 12px 14px;
}

.bn-auth-reset-message.is-success {
    border: 1px solid rgba(14, 151, 100, .24);
    background: #edf9f4;
    color: #116a4a;
}

.bn-auth-reset-message.is-error {
    border: 1px solid rgba(181, 71, 71, .24);
    background: #fffafa;
    color: #7a2f2f;
}

.bn-auth-card.is-password-reset {
    align-self: center;
}

.bn-auth-card.is-password-reset .bn-auth-card-copy {
    margin-bottom: 22px;
}

.bn-auth-pane .dnnPasswordReset,
.bn-auth-pane .dnnPasswordResetContent,
.bn-auth-card .dnnPasswordReset,
.bn-auth-card .dnnPasswordResetContent {
    width: 100% !important;
    max-width: none !important;
}

.bn-auth-pane .dnnPasswordReset .dnnFormItem,
.bn-auth-card .dnnPasswordReset .dnnFormItem {
    display: block !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
}

.bn-auth-pane .dnnPasswordReset input[type="text"],
.bn-auth-pane .dnnPasswordReset input[type="password"],
.bn-auth-card .dnnPasswordReset input[type="text"],
.bn-auth-card .dnnPasswordReset input[type="password"] {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 50px !important;
    border: 1px solid var(--bn-shell-border) !important;
    border-radius: 7px !important;
    background: #fbfdfe !important;
    color: var(--bn-shell-text) !important;
    padding: 0 14px !important;
    font: inherit !important;
    font-size: 15px !important;
    line-height: 50px !important;
    box-shadow: none !important;
}

.bn-auth-pane .dnnPasswordReset input[type="text"]:disabled,
.bn-auth-pane .dnnPasswordReset input.aspNetDisabled,
.bn-auth-card .dnnPasswordReset input[type="text"]:disabled,
.bn-auth-card .dnnPasswordReset input.aspNetDisabled {
    border-color: #dce6ec !important;
    background: #f4f7fa !important;
    color: #60717f !important;
    opacity: 1 !important;
}

.bn-auth-pane .dnnPasswordReset input[type="password"]:focus,
.bn-auth-card .dnnPasswordReset input[type="password"]:focus {
    border-color: var(--bn-shell-primary) !important;
    background: #ffffff !important;
    outline: 0 !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 31, .14) !important;
}

.bn-auth-pane .dnnPasswordReset [id$="_resetMessages"],
.bn-auth-card .dnnPasswordReset [id$="_resetMessages"] {
    display: grid !important;
    gap: 6px !important;
    margin: 0 0 16px !important;
    border: 1px solid rgba(181, 71, 71, .24) !important;
    border-radius: 8px !important;
    background: #fffafa !important;
    color: #7a2f2f !important;
    padding: 12px 14px !important;
    box-shadow: none !important;
}

.bn-auth-pane .dnnPasswordReset [id$="_resetMessages"] span,
.bn-auth-pane .dnnPasswordReset [id$="_resetMessages"] .error,
.bn-auth-card .dnnPasswordReset [id$="_resetMessages"] span,
.bn-auth-card .dnnPasswordReset [id$="_resetMessages"] .error {
    color: #7a2f2f !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    line-height: 1.45 !important;
}

.bn-auth-pane .password-strength-container,
.bn-auth-card .password-strength-container {
    width: 100% !important;
    max-width: none !important;
}

.bn-auth-pane .password-strength-container .meter,
.bn-auth-card .password-strength-container .meter {
    width: 100% !important;
    height: 7px !important;
    margin: 8px 0 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #edf2f5 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.bn-auth-pane .password-strength-container .meter div,
.bn-auth-card .password-strength-container .meter div {
    display: flex !important;
    gap: 3px !important;
    height: 100% !important;
}

.bn-auth-pane .password-strength-container .meter span,
.bn-auth-card .password-strength-container .meter span {
    flex: 1 1 0 !important;
    height: 100% !important;
    border-radius: 999px !important;
    background: rgba(255, 90, 31, .2) !important;
}

.bn-auth-pane .password-strength-tooltip,
.bn-auth-card .password-strength-tooltip {
    z-index: 20 !important;
    max-width: 100% !important;
    border: 1px solid var(--bn-shell-border) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: var(--bn-shell-text) !important;
    box-shadow: 0 14px 34px rgba(31, 45, 54, .12) !important;
}

.bn-auth-pane .password-strength-tooltip-content,
.bn-auth-card .password-strength-tooltip-content {
    width: auto !important;
    min-width: 210px !important;
    padding: 12px 14px !important;
}

.bn-auth-pane .password-strength-tooltip h2,
.bn-auth-card .password-strength-tooltip h2 {
    margin: 0 0 8px !important;
    color: var(--bn-shell-text) !important;
    font-size: 13px !important;
    font-weight: 850 !important;
}

.bn-auth-pane .password-strength-tooltip ul,
.bn-auth-card .password-strength-tooltip ul {
    margin: 0 !important;
    padding-left: 18px !important;
}

.bn-auth-pane .password-strength-tooltip li,
.bn-auth-card .password-strength-tooltip li {
    color: var(--bn-shell-muted) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.bn-auth-pane .dnnPasswordReset .dnnActions,
.bn-auth-card .dnnPasswordReset .dnnActions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
}

.bn-auth-pane .dnnPasswordReset .dnnActions li,
.bn-auth-card .dnnPasswordReset .dnnActions li {
    margin: 0 !important;
    padding: 0 !important;
}

.bn-auth-pane .dnnPasswordReset a[id$="_cmdChangePassword"].dnnPrimaryAction,
.bn-auth-card .dnnPasswordReset a[id$="_cmdChangePassword"].dnnPrimaryAction {
    min-height: 50px !important;
    border-radius: 7px !important;
    padding: 0 18px !important;
    font-size: 15px !important;
    line-height: 50px !important;
}

.bn-auth-pane .dnnPasswordReset a[id$="_hlCancel"].dnnSecondaryAction,
.bn-auth-card .dnnPasswordReset a[id$="_hlCancel"].dnnSecondaryAction {
    min-height: 50px !important;
    border: 1px solid var(--bn-shell-border) !important;
    border-radius: 7px !important;
    background: #ffffff !important;
    color: var(--bn-shell-text) !important;
    padding: 0 16px !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    line-height: 50px !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.bn-auth-pane .dnnPasswordReset a[id$="_hlCancel"].dnnSecondaryAction:hover,
.bn-auth-pane .dnnPasswordReset a[id$="_hlCancel"].dnnSecondaryAction:focus,
.bn-auth-card .dnnPasswordReset a[id$="_hlCancel"].dnnSecondaryAction:hover,
.bn-auth-card .dnnPasswordReset a[id$="_hlCancel"].dnnSecondaryAction:focus {
    border-color: var(--bn-shell-primary-line) !important;
    background: var(--bn-shell-primary-soft) !important;
    color: var(--bn-shell-primary) !important;
    outline: 0 !important;
}

.bn-auth-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    min-width: 0;
    margin: 18px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.bn-auth-stat strong {
    color: #ff5a1f;
    font-size: 18px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1;
}

.bn-auth-stat span {
    color: var(--bn-shell-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.bn-auth-directory-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.bn-auth-directory-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid var(--bn-shell-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--bn-shell-text);
    padding: 0 11px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.bn-auth-directory-links a:first-child {
    border-color: rgba(255, 90, 31, .32);
    background: rgba(255, 90, 31, .07);
    color: #d94816;
}

.bn-auth-directory-links a:hover,
.bn-auth-directory-links a:focus {
    border-color: var(--bn-shell-primary-line);
    background: var(--bn-shell-primary-soft);
    color: var(--bn-shell-primary);
    outline: 0;
}

@media (min-width: 1600px) {
    .bn-shell-content {
        padding: 32px;
    }
}

@media (max-width: 1199px) {
    :root {
        --bn-shell-sidebar-width: 264px;
    }

    .bn-shell-topbar {
        padding: 0 18px;
    }
}

@media (max-width: 900px) {
    :root {
        --bn-shell-topbar-height: 64px;
    }

    .bn-shell {
        grid-template-columns: 1fr;
    }

    .bn-shell-backdrop {
        position: fixed;
        inset: 0;
        z-index: 10050;
        display: block;
        visibility: hidden;
        background: rgba(15, 29, 38, .38);
        opacity: 0;
        transition: opacity .18s ease, visibility .18s ease;
    }

    body.bn-shell-nav-open .bn-shell-backdrop {
        visibility: visible;
        opacity: 1;
    }

    .bn-shell-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 10060;
        display: flex;
        width: min(86vw, 320px);
        height: 100vh;
        height: 100dvh;
        border-right: 1px solid var(--bn-shell-border);
        border-bottom: 0;
        box-shadow: 18px 0 40px rgba(31, 45, 54, .14);
        transform: translateX(-100%);
        transition: transform .2s ease;
        overflow: hidden;
    }

    body.bn-shell-nav-open .bn-shell-sidebar {
        transform: translateX(0);
    }

    .bn-shell-logo {
        justify-content: space-between;
        gap: 12px;
    }

    .bn-shell-logo img {
        max-width: 170px;
    }

    .bn-shell-nav-close {
        display: inline-grid;
        flex: 0 0 auto;
        place-items: center;
        width: 40px;
        height: 40px;
        border: 1px solid var(--bn-shell-border);
        border-radius: var(--bn-shell-control-radius);
        background: #ffffff;
        color: var(--bn-shell-text);
        cursor: pointer;
    }

    .bn-shell-nav-close span,
    .bn-shell-nav-close span::before {
        display: block;
        width: 16px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        content: "";
    }

    .bn-shell-nav-close span {
        transform: rotate(45deg);
    }

    .bn-shell-nav-close span::before {
        transform: rotate(90deg);
    }

    .bn-shell-nav {
        max-height: none;
        overflow-y: auto;
    }

    .bn-shell-topbar {
        top: 0;
        min-height: var(--bn-shell-topbar-height);
        display: flex;
        gap: 10px;
        padding: 10px 14px;
    }

    .bn-shell-topbar-start {
        flex: 0 0 auto;
        width: auto;
        gap: 10px;
    }

    .bn-shell-mobile-logo {
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .bn-shell-mobile-logo img {
        display: block;
        max-width: 132px;
        max-height: 40px;
        object-fit: contain;
    }

    .bn-shell-breadcrumbs {
        display: none;
    }

    .bn-shell-menu-button {
        display: inline-grid;
        flex: 0 0 auto;
        place-items: center;
        width: 40px;
        height: 40px;
        border: 1px solid var(--bn-shell-border);
        border-radius: var(--bn-shell-control-radius);
        background: #ffffff;
        color: var(--bn-shell-text);
        cursor: pointer;
    }

    .bn-shell-menu-button span,
    .bn-shell-menu-button span::before,
    .bn-shell-menu-button span::after {
        display: block;
        width: 17px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        content: "";
    }

    .bn-shell-menu-button span {
        position: relative;
    }

    .bn-shell-menu-button span::before,
    .bn-shell-menu-button span::after {
        position: absolute;
        left: 0;
    }

    .bn-shell-menu-button span::before {
        top: -6px;
    }

    .bn-shell-menu-button span::after {
        top: 6px;
    }

    .bn-shell-menu-button:hover,
    .bn-shell-menu-button:focus,
    .bn-shell-nav-close:hover,
    .bn-shell-nav-close:focus {
        border-color: var(--bn-shell-primary-line);
        background: var(--bn-shell-primary-soft);
        color: var(--bn-shell-primary);
        outline: 0;
    }

    .bn-shell-actions {
        flex: 1 1 auto;
        width: auto;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 8px;
        min-width: 0;
    }

    .bn-shell-credits {
        flex: 1 1 auto;
    }

    .bn-shell-account {
        flex: 0 0 auto;
    }

    .bn-shell-credits #bn-credits-viewer {
        min-width: 0;
        min-height: 40px;
        padding: 0 14px;
    }

    .bn-shell-account-menu {
        right: 0;
    }

    .bn-shell-content {
        padding: 16px;
    }

    body.bn-auth-page .bn-shell-content {
        min-height: auto;
        padding: 18px;
    }

    body.bn-auth-page .bn-pane-main {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    body.bn-auth-page .bn-pane-main::before {
        display: none;
    }

    .bn-auth-stage {
        grid-template-columns: minmax(0, 1fr);
        width: min(100% - 32px, 560px);
        min-height: auto;
        padding: 28px 0 34px;
    }

    .bn-auth-top {
        width: min(100% - 32px, 560px);
        padding-top: 18px;
    }

    .bn-auth-top-actions span {
        display: none;
    }

    .bn-auth-card {
        padding: 26px;
    }

    .bn-auth-brand {
        min-height: auto;
        border-left: 0;
        border-top: 1px solid var(--bn-shell-border);
        padding: 20px 0 0;
    }

    .bn-auth-brand-copy {
        margin-top: 0;
    }

    .bn-auth-brand h2 {
        font-size: 22px;
    }

    .bn-auth-mini-points {
        margin-top: 14px;
    }

    .bn-auth-stat {
        margin-top: 14px;
    }
}

@media (max-width: 520px) {
    :root {
        --bn-shell-topbar-height: 64px;
    }

    .bn-shell-topbar {
        padding: 10px 12px;
    }

    .bn-shell-breadcrumbs {
        font-size: 13px;
    }

    .bn-shell-actions {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .bn-shell-credits {
        min-width: 0;
    }

    .bn-shell-credits #bn-credits-viewer {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bn-shell-account-label {
        display: none;
    }

    .bn-shell-account-button {
        min-width: 0;
        padding: 3px 9px 3px 4px;
    }

    .bn-shell-account-menu {
        position: fixed;
        top: auto;
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
    }

    .bn-shell-content {
        padding: 12px;
    }

    body.bn-auth-page .bn-shell-content {
        padding: 12px;
    }

    body.bn-auth-page .DNNModuleContent > *,
    body.bn-auth-page .dnnForm,
    body.bn-auth-page .LoginPanel,
    body.bn-auth-page .dnnLoginService,
    body.bn-auth-page .dnnPasswordResetContent {
        padding: 20px;
    }

    .bn-auth-stage {
        width: min(100% - 24px, 520px);
        padding: 18px 0 26px;
    }

    .bn-auth-top {
        width: min(100% - 24px, 520px);
        align-items: flex-start;
        padding-top: 14px;
    }

    .bn-auth-top .bn-auth-logo img {
        max-width: 174px;
    }

    .bn-auth-top-actions a {
        min-height: 34px;
        padding: 0 10px;
        font-size: 13px;
        white-space: nowrap;
    }

    .bn-auth-card {
        padding: 22px;
    }

    .bn-auth-card h1 {
        font-size: 26px;
    }

    .bn-auth-brand {
        display: none;
    }

    .bn-auth-pane .DNNModuleContent > *,
    .bn-auth-pane .dnnForm,
    .bn-auth-pane .LoginPanel,
    .bn-auth-pane .dnnLoginService,
    .bn-auth-pane .dnnPasswordResetContent {
        padding: 20px;
    }

    .bn-auth-card .DNNModuleContent > *,
    .bn-auth-card .dnnForm,
    .bn-auth-card .LoginPanel,
    .bn-auth-card .dnnLoginService,
    .bn-auth-card .dnnPasswordResetContent {
        padding: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bn-shell-backdrop,
    .bn-shell-sidebar,
    .bn-ddr-menu-toggle::before,
    .bn-ddr-menu-row,
    .bn-ddr-menu a,
    .bn-ddr-menu-label {
        transition: none;
    }
}

@media (min-width: 2200px) {
    :root {
        --bn-shell-sidebar-width: 320px;
        --bn-shell-content-max: 2000px;
    }

    .bn-shell-topbar {
        padding: 0 32px;
    }
}
