/*!
 * NDHR — authentication screens
 * Ported from the approved demo (Auth.dc.html). Loaded alongside site.css,
 * which supplies the shared design tokens.
 *
 * Deliberately standalone: the auth pages carry no Metronic and no Bootstrap.
 */

/* =========================================================================
   TOKENS (auth-only)
   ========================================================================= */
:root {
    --auth-bg: #f7f8fa;
    --auth-panel-start: #0a356f;
    --auth-panel-end: #0e6b8f;
    --auth-input-bg: #fbfcfd;
    --auth-input-bg-locked: #f4f6f8;
    --auth-label: #33475b;
    --auth-sub: #66737f;
    --auth-check: #4c5a68;
    --auth-eyebrow: #98a5b2;
    --auth-copyright: #a4b0bb;
    --auth-toggle: #8a97a4;
    --auth-ref: #5b6b7b;
    --auth-code-box: #f7f9fb;
    --auth-code-border: #eaeff4;
    --auth-code-text: #42546a;
    --auth-code-muted: #7c8996;
    --auth-ok-bg: #f1f9f3;
    --auth-ok-border: #cfe9d6;
    --auth-ok-text: #25603a;
    --auth-info-bg: #f4f8fd;
    --auth-info-border: #d9e6f5;
    --auth-info-text: #3a5570;
    --auth-weak: #e0453a;
    --auth-fair: #e39a3a;
    --auth-good: #3aa9e0;
    --auth-strong: #28A745;
    --auth-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
    --grad-auth-panel: linear-gradient(160deg, #0a356f 0%, #0B3F86 55%, #0e6b8f 115%);
    --grad-auth-bar: linear-gradient(120deg, #0a356f, #0B3F86 60%, #0e6b8f);
    --grad-auth-tile: linear-gradient(135deg, #0B3F86, #28A745);
}

/* =========================================================================
   BASE
   ========================================================================= */
body.ndhr-auth-body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ndhr-text);
    background: var(--auth-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.7;
}

.ndhr-auth-body a:hover { color: var(--ndhr-blue-500); }

/* =========================================================================
   SHELL
   ========================================================================= */
.ndhr-auth {
    width: 100%;
    min-height: 100dvh;
    overflow-x: hidden;
    background: var(--auth-bg);
    display: grid;
    grid-template-columns: 1.02fr 1fr;
}

/* --- brand panel (desktop) ------------------------------------------- */
.ndhr-auth__panel {
    position: relative;
    overflow: hidden;
    background: var(--grad-auth-panel);
    padding: clamp(34px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh;
}

.ndhr-auth__panel-inner { position: relative; padding: 44px 0; }

.ndhr-auth__eyebrow {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ndhr-lime-500);
    margin-bottom: 14px;
}

.ndhr-auth__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(25px, 2.8vw, 34px);
    line-height: 1.18;
    margin: 0;
    color: #fff;
}

.ndhr-auth__blurb {
    margin: 16px 0 30px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ndhr-on-dark-soft);
    max-width: 390px;
}

.ndhr-auth__perks { display: flex; flex-direction: column; gap: 14px; }

.ndhr-auth__perk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--ndhr-topbar-text);
    line-height: 1.5;
}

.ndhr-auth__perk i { color: var(--ndhr-lime-600); font-size: 17px; margin-top: 3px; flex: none; }

.ndhr-auth__contacts {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
    font-size: 13px;
    color: var(--ndhr-footer-muted);
}

.ndhr-auth__contact { display: inline-flex; align-items: center; gap: 7px; transition: color var(--t-fast); }
.ndhr-auth__contact:hover { color: var(--ndhr-lime-500); }
.ndhr-auth__contact i { color: var(--ndhr-lime-600); }

.ndhr-auth__lockup { position: relative; display: flex; align-items: center; gap: 13px; }
.ndhr-auth__lockup img { height: 46px; width: auto; }
.ndhr-auth__lockup-text { display: flex; flex-direction: column; line-height: 1; }

.ndhr-auth__name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 25px;
    letter-spacing: .02em;
    color: #fff;
}

.ndhr-auth__sub {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 8px;
    letter-spacing: .2em;
    color: var(--ndhr-topbar-tag);
    margin-top: 4px;
}

/* --- mobile brand bar -------------------------------------------------- */
.ndhr-auth__bar {
    display: none;
    background: var(--grad-auth-bar);
    padding: 16px clamp(18px, 5vw, 28px);
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.ndhr-auth__bar img { height: 38px; width: auto; }
.ndhr-auth__bar .ndhr-auth__name { font-size: 20px; }
.ndhr-auth__bar .ndhr-auth__sub { font-size: 7.5px; letter-spacing: .19em; }

.ndhr-auth__back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    color: var(--ndhr-on-dark-soft);
}

.ndhr-auth__back i { font-size: 12px; }

/* --- form column ------------------------------------------------------- */
.ndhr-auth__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(22px, 3.5vw, 44px) clamp(18px, 4vw, 44px) clamp(34px, 4vw, 52px);
}

.ndhr-auth__card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border: 1px solid var(--ndhr-border);
    border-radius: var(--r-xl);
    padding: clamp(26px, 3.2vw, 40px);
    box-shadow: 0 16px 44px rgba(11, 63, 134, 0.08);
}

.ndhr-auth__head { margin-bottom: 26px; }

.ndhr-auth__tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: var(--r-badge);
    background: var(--grad-auth-tile);
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(11, 63, 134, 0.22);
}

.ndhr-auth__tile i { color: #fff; font-size: 24px; }

.ndhr-auth__heading {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(23px, 2.4vw, 28px);
    line-height: 1.22;
    margin: 0;
    color: var(--ndhr-blue-700);
}

.ndhr-auth__subheading { margin: 10px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--auth-sub); }

.ndhr-auth__copyright {
    margin: 22px 0 0;
    font-size: 12.5px;
    color: var(--auth-copyright);
    text-align: center;
}

/* =========================================================================
   BANNERS
   ========================================================================= */
.ndhr-auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 13px;
    padding: 15px 16px;
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.6;
}

.ndhr-auth-alert i { font-size: 18px; margin-top: 2px; flex: none; }

.ndhr-auth-alert--success {
    background: var(--auth-ok-bg);
    border: 1px solid var(--auth-ok-border);
    color: var(--auth-ok-text);
}

.ndhr-auth-alert--success i { color: var(--ndhr-green-600); }

.ndhr-auth-alert--info {
    background: var(--auth-info-bg);
    border: 1px solid var(--auth-info-border);
    color: var(--auth-info-text);
    padding: 16px;
}

.ndhr-auth-alert--info i { color: var(--ndhr-blue-500); }

.ndhr-auth-alert--error {
    background: #fdf3f2;
    border: 1px solid #f4d3d0;
    color: #8f2f27;
}

.ndhr-auth-alert--error i { color: var(--auth-weak); }

/* =========================================================================
   FORM
   ========================================================================= */
.ndhr-auth-form { display: flex; flex-direction: column; gap: 17px; }
.ndhr-auth-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 17px; }

.ndhr-auth-field { display: flex; flex-direction: column; gap: 7px; }

.ndhr-auth-field__label {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--auth-label);
}

.ndhr-auth-input {
    padding: 13px 15px;
    border-radius: var(--r-input);
    border: 1.5px solid var(--ndhr-border-input);
    background: var(--auth-input-bg);
    outline: none;
    font-size: 15px;
    color: var(--ndhr-text);
    transition: border-color var(--t-fast);
    width: 100%;
}

.ndhr-auth-input:focus { border-color: var(--ndhr-cyan-500); }
.ndhr-auth-input.is-invalid { border-color: var(--auth-weak); }
.ndhr-auth-input--locked { background: var(--auth-input-bg-locked); }

.ndhr-auth-field__error { font-size: 12.5px; color: var(--auth-weak); }

/* password + toggle */
.ndhr-auth-pw { position: relative; display: flex; align-items: center; }
.ndhr-auth-pw .ndhr-auth-input { padding-right: 46px; }

.ndhr-auth-pw__toggle {
    position: absolute;
    right: 6px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--auth-toggle);
    cursor: pointer;
    border-radius: 8px;
}

.ndhr-auth-pw__toggle:hover { color: var(--ndhr-blue-500); }
.ndhr-auth-pw__toggle i { font-size: 16px; }

/* strength meter */
.ndhr-auth-meter { display: flex; align-items: center; gap: 9px; margin-top: 3px; }

.ndhr-auth-meter__track {
    flex: 1;
    height: 5px;
    border-radius: 99px;
    background: var(--ndhr-border);
    overflow: hidden;
}

.ndhr-auth-meter__bar {
    display: block;
    height: 100%;
    width: 0;
    background: var(--ndhr-border-input);
    transition: width .25s ease, background .25s ease;
}

.ndhr-auth-meter__label {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    color: var(--auth-toggle);
    min-width: 56px;
    text-align: right;
}

/* code / OTP inputs */
.ndhr-auth-code {
    padding: 15px;
    border-radius: var(--r-input);
    border: 1.5px solid var(--ndhr-border-input);
    background: var(--auth-input-bg);
    outline: none;
    font-size: 26px;
    font-family: var(--auth-mono);
    letter-spacing: .42em;
    text-align: center;
    color: var(--ndhr-blue-700);
    transition: border-color var(--t-fast);
    width: 100%;
}

.ndhr-auth-code:focus { border-color: var(--ndhr-cyan-500); }
.ndhr-auth-code.is-invalid { border-color: var(--auth-weak); }
.ndhr-auth-code--sm { padding: 14px 15px; font-size: 22px; letter-spacing: .36em; }

.ndhr-auth-code--mono {
    font-size: 15px;
    letter-spacing: .04em;
    text-align: left;
    padding: 13px 15px;
    color: var(--ndhr-text);
}

/* checkboxes */
.ndhr-auth-check {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    color: var(--auth-check);
    cursor: pointer;
}

.ndhr-auth-check input {
    width: 17px;
    height: 17px;
    accent-color: var(--ndhr-blue-500);
    cursor: pointer;
}

.ndhr-auth-check--block { display: flex; align-items: flex-start; line-height: 1.55; gap: 10px; }
.ndhr-auth-check--block input { margin-top: 3px; flex: none; }
.ndhr-auth-check a { color: var(--ndhr-blue-500); font-weight: 600; }

.ndhr-auth-stack {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

/* buttons */
.ndhr-auth-btn {
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: var(--r-btn);
    border: none;
    background: var(--grad);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(11, 63, 134, 0.22);
    transition: transform var(--t-base), box-shadow var(--t-base), filter var(--t-base);
}

.ndhr-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(11, 63, 134, 0.3);
    filter: brightness(1.05);
}

.ndhr-auth-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; filter: none; }
.ndhr-auth-btn--flush { margin-top: 0; }
.ndhr-auth-btn--grow { flex: 1; min-width: 200px; padding: 15px 24px; font-size: 15.5px; }

.ndhr-auth-btn--outline {
    padding: 15px 22px;
    border: 1.6px solid rgba(11, 63, 134, 0.2);
    background: #fff;
    color: var(--ndhr-blue-700);
    font-size: 15.5px;
    box-shadow: none;
    transition: border-color var(--t-base), color var(--t-base);
}

.ndhr-auth-btn--outline:hover {
    border-color: var(--ndhr-blue-500);
    color: var(--ndhr-blue-500);
    transform: none;
    box-shadow: none;
    filter: none;
}

.ndhr-auth-link {
    border: none;
    background: transparent;
    padding: 0;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ndhr-blue-500);
    cursor: pointer;
    transition: color var(--t-base);
}

.ndhr-auth-link:hover { color: var(--ndhr-green-600); }
.ndhr-auth-link--sm { font-size: 14px; }

.ndhr-auth-foot {
    margin: 6px 0 0;
    text-align: center;
    font-size: 14.5px;
    color: var(--auth-sub);
}

.ndhr-auth-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.ndhr-auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--auth-eyebrow);
    font-family: var(--font-head);
    font-weight: 600;
}

.ndhr-auth-divider::before,
.ndhr-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ndhr-border);
}

/* =========================================================================
   2FA SETUP
   ========================================================================= */
.ndhr-auth-setup { display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: start; }

.ndhr-auth-qr {
    aspect-ratio: 1 / 1;
    border-radius: var(--r-sm);
    border: 1.5px dashed rgba(11, 63, 134, 0.26);
    background: var(--auth-code-box);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    text-align: center;
}

.ndhr-auth-qr svg, .ndhr-auth-qr img { width: 100%; height: auto; }
.ndhr-auth-qr i { font-size: 52px; color: var(--ndhr-blue-700); opacity: .55; }

.ndhr-auth-qr__caption {
    font-family: var(--auth-mono);
    font-size: 10.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--auth-code-muted);
    line-height: 1.6;
}

.ndhr-auth-codes__title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--auth-label);
    display: block;
    margin-bottom: 9px;
}

.ndhr-auth-codes__help { margin: 0 0 12px; font-size: 13.5px; line-height: 1.6; color: var(--auth-code-muted); }

.ndhr-auth-codes__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--auth-code-box);
    border: 1px solid var(--auth-code-border);
    border-radius: var(--r-btn);
    padding: 14px;
}

.ndhr-auth-codes__list span {
    font-family: var(--auth-mono);
    font-size: 13px;
    letter-spacing: .03em;
    color: var(--auth-code-text);
}

/* =========================================================================
   DEV ROUTE REFERENCE
   ========================================================================= */
.ndhr-auth-ref {
    width: 100%;
    max-width: 520px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: var(--auth-eyebrow);
}

.ndhr-auth-ref__chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--auth-mono);
    background: var(--ndhr-border);
    border-radius: 7px;
    padding: 5px 10px;
    color: var(--auth-ref);
}

.ndhr-auth-ref__chip i { font-size: 12px; }
.ndhr-auth-ref code { font-family: var(--auth-mono); color: var(--auth-ref); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 991.98px) {
    .ndhr-auth { grid-template-columns: 1fr; }
    .ndhr-auth__panel { display: none; }
    .ndhr-auth__bar { display: flex; }
}

@media (max-width: 559.98px) {
    .ndhr-auth-setup { grid-template-columns: 1fr; }
}

/* =========================================================================
   METRONIC COMPATIBILITY LAYER
   =========================================================================
   The auth layout no longer loads Metronic, but Modules/Auth is template-owned
   and its screens are written in Metronic classes. Screens this app has not
   explicitly overridden — and any new one a future template sync adds — would
   otherwise render unstyled. These rules map the handful of Metronic classes
   those views actually use onto the NDHR design, scoped to the auth body so
   nothing else in the app is affected.
   ========================================================================= */
/* Screens this app has overridden render their own <x-landing::auth.card>.
   Ones that don't are a bare Livewire root div, so give that div the card
   treatment instead — this keeps every screen inside the same white card
   without double-wrapping the overridden ones. */
.ndhr-auth__main > div:not(.ndhr-auth-plain) {
    width: 100%;
    max-width: 520px;
}

@supports selector(:has(*)) {
.ndhr-auth__main > div:not(:has(.ndhr-auth__card)) {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border: 1px solid var(--ndhr-border);
    border-radius: var(--r-xl);
    padding: clamp(26px, 3.2vw, 40px);
    box-shadow: 0 16px 44px rgba(11, 63, 134, 0.08);
}
}

.ndhr-auth-body .form-control {
    padding: 13px 15px;
    border-radius: var(--r-input);
    border: 1.5px solid var(--ndhr-border-input);
    background: var(--auth-input-bg);
    outline: none;
    font-size: 15px;
    color: var(--ndhr-text);
    transition: border-color var(--t-fast);
    width: 100%;
    display: block;
}

.ndhr-auth-body select,
.ndhr-auth-body .form-select {
    padding: 13px 15px;
    border-radius: var(--r-input);
    border: 1.5px solid var(--ndhr-border-input);
    background: var(--auth-input-bg);
    outline: none;
    font-size: 15px;
    color: var(--ndhr-text);
    width: 100%;
    display: block;
    transition: border-color var(--t-fast);
}

.ndhr-auth-body select:focus,
.ndhr-auth-body .form-select:focus { border-color: var(--ndhr-cyan-500); }

.ndhr-auth-body .form-control:focus { border-color: var(--ndhr-cyan-500); }
.ndhr-auth-body .form-control.is-invalid { border-color: var(--auth-weak); }
.ndhr-auth-body .invalid-feedback,
.ndhr-auth-body .text-danger { font-size: 12.5px; color: var(--auth-weak); display: block; }

.ndhr-auth-body .form-label,
.ndhr-auth-body .form-check-label {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--auth-label);
}

.ndhr-auth-body .form-check { display: inline-flex; align-items: center; gap: 9px; }
.ndhr-auth-body .form-check-input {
    width: 17px;
    height: 17px;
    accent-color: var(--ndhr-blue-500);
    cursor: pointer;
    margin: 0;
}

.ndhr-auth-body .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: var(--r-btn);
    border: none;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: transform var(--t-base), box-shadow var(--t-base), filter var(--t-base);
}

.ndhr-auth-body .btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 12px 26px rgba(11, 63, 134, 0.22);
}

.ndhr-auth-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(11, 63, 134, 0.3);
    filter: brightness(1.05);
}

.ndhr-auth-body .btn-light,
.ndhr-auth-body .btn-secondary,
.ndhr-auth-body .btn-outline {
    background: #fff;
    border: 1.6px solid rgba(11, 63, 134, 0.2);
    color: var(--ndhr-blue-700);
}

.ndhr-auth-body .btn-light:hover,
.ndhr-auth-body .btn-secondary:hover,
.ndhr-auth-body .btn-outline:hover { border-color: var(--ndhr-blue-500); color: var(--ndhr-blue-500); }

.ndhr-auth-body .btn-link,
.ndhr-auth-body .link-primary {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ndhr-blue-500);
}

.ndhr-auth-body .btn-link:hover,
.ndhr-auth-body .link-primary:hover { color: var(--ndhr-green-600); transform: none; }

.ndhr-auth-body .alert {
    display: block;
    border-radius: 13px;
    padding: 15px 16px;
    font-size: 14.5px;
    line-height: 1.6;
    border: 1px solid transparent;
}

.ndhr-auth-body .alert-success {
    background: var(--auth-ok-bg);
    border-color: var(--auth-ok-border);
    color: var(--auth-ok-text);
}

.ndhr-auth-body .alert-warning,
.ndhr-auth-body .alert-info {
    background: var(--auth-info-bg);
    border-color: var(--auth-info-border);
    color: var(--auth-info-text);
}

.ndhr-auth-body .alert-danger {
    background: #fdf3f2;
    border-color: #f4d3d0;
    color: #8f2f27;
}

/* Typography + spacing utilities these views lean on. */
.ndhr-auth-body h1 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(23px, 2.4vw, 28px);
    line-height: 1.22;
    color: var(--ndhr-blue-700);
}

.ndhr-auth-body .text-gray-900, .ndhr-auth-body .text-gray-800 { color: var(--ndhr-blue-700); }
.ndhr-auth-body .text-gray-700 { color: var(--auth-label); }
.ndhr-auth-body .text-gray-600, .ndhr-auth-body .text-gray-500 { color: var(--auth-sub); }
.ndhr-auth-body .text-muted { color: var(--auth-code-muted); }
.ndhr-auth-body .text-center { text-align: center; }
.ndhr-auth-body .fw-bolder, .ndhr-auth-body .fw-bold { font-weight: 700; }
.ndhr-auth-body .fw-semibold { font-weight: 600; }
.ndhr-auth-body .d-grid { display: grid; }
.ndhr-auth-body .d-flex { display: flex; }
.ndhr-auth-body .flex-wrap { flex-wrap: wrap; }
.ndhr-auth-body .flex-stack { display: flex; align-items: center; justify-content: space-between; }
.ndhr-auth-body .justify-content-center { justify-content: center; }
.ndhr-auth-body .align-items-center { align-items: center; }
.ndhr-auth-body .w-100 { width: 100%; }
.ndhr-auth-body .mb-3 { margin-bottom: .75rem; }
.ndhr-auth-body .mb-8 { margin-bottom: 1.5rem; }
.ndhr-auth-body .mb-10, .ndhr-auth-body .mb-11 { margin-bottom: 2rem; }
.ndhr-auth-body .mt-2 { margin-top: .5rem; }
.ndhr-auth-body .gap-3 { gap: .75rem; }
.ndhr-auth-body .gap-4 { gap: 1rem; }
.ndhr-auth-body .fv-row { margin-bottom: 1.1rem; }

.ndhr-auth-body .separator {
    display: block;
    height: 1px;
    background: var(--ndhr-border);
    margin: 1.75rem 0;
}

.ndhr-auth-body .spinner-border { display: none; }


/* =========================================================================
   TOUCH TARGETS
   ========================================================================= */
@media (pointer: coarse) {
    .ndhr-auth-pw__toggle { width: 44px; height: 44px; }
    .ndhr-auth-link,
    .ndhr-auth-body .link-primary,
    .ndhr-auth-body .btn-link { padding: 10px 2px; }
    .ndhr-auth-check { padding: 6px 0; }
}
