:root {
    --tf-blue: #0e426a;
    --tf-blue-2: #0e426a;
    --tf-link: #0053bb;
    --tf-sky: #c9d7e0;
    --tf-soft: #eef2f5;
    --tf-line: #dbe2e9;
    --tf-ink: #263943;
    --tf-muted: #5d6970;
    --tf-red: #bc1f52;
    --tf-gold: #ffbd34;
    --tf-teal: #0ba1b5;
    --tf-white: #fff;
    --tf-success: #126a35;
    --tf-focus: #ffbf47;
    --tf-shadow: 0 8px 18px rgba(37, 50, 56, .12);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    background: var(--tf-white);
    color: var(--tf-ink);
    font-family: Roboto, Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: var(--tf-link);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 4px solid var(--tf-focus);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    background: var(--tf-white);
    color: var(--tf-blue);
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.tf-container {
    width: min(1328px, calc(100% - 80px));
    margin: 0 auto;
}

.tf-header {
    background: var(--tf-sky);
    border-bottom: 0;
}

.tf-header__top {
    background: var(--tf-blue);
    color: var(--tf-white);
}

.tf-header__top-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    font-size: .9rem;
}

.tf-header__top a,
.tf-header__top button {
    color: var(--tf-white);
}

.tf-header__inner {
    display: grid;
    grid-template-columns: minmax(220px, auto) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 96px;
    padding: 8px 0;
}

.tf-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--tf-blue);
    text-decoration: none;
}

.tf-brand img {
    width: min(260px, 52vw);
    height: auto;
    display: block;
}

.tf-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.tf-nav a,
.tf-nav button,
.tf-button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border: 2px solid transparent;
    border-radius: 0;
    color: var(--tf-blue);
    background: transparent;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    opacity: .8;
    transition: opacity .2s ease;
}

.tf-nav a:hover,
.tf-nav button:hover,
.tf-button:hover {
   /* background: rgba(255, 255, 255, .68); */
    opacity: 1;
}

.tf-nav a.active,
.tf-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, .85);
    border-radius: 999px;
    opacity: 1;
}

.tf-nav__user {
    color: var(--tf-blue);
    font-size: .92rem;
    font-weight: 700;
}

.tf-button {
    border-width: 1px;
    border-color: var(--tf-gold);
    background: var(--tf-white);
    color: var(--tf-blue);
    font-family: Lora, Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
    font-style: italic;
    font-weight: 700;
}

.tf-button--primary,
.tf-nav .tf-button--primary {
    border-color: var(--tf-blue);
    background: var(--tf-blue);
    color: var(--tf-white);
}

.tf-button--primary:hover {
    background: var(--tf-blue-2);
}

.tf-button--gold {
    border-color: var(--tf-gold);
    background: var(--tf-gold);
    color: #241a00;
}

.tf-button--red {
    border-color: var(--tf-red);
    background: var(--tf-red);
    color: var(--tf-white);
}

.tf-account-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    padding: 4px 0;
    font-weight: 700;
    text-align: center;
}

.tf-account-help a {
    text-underline-offset: 2px;
}

.tf-button--muted {
    border-color: var(--tf-line);
    background: #f6f8fa;
    color: var(--tf-muted);
    cursor: default;
}

.tf-link-button {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-weight: 800;
    cursor: pointer;
    text-decoration: underline;
}

.tf-logout-form {
    margin: 0;
}

.tf-social {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.tf-social a {
    width: 24px;
    height: 24px;
    min-height: 24px;
    padding: 0;
    color: var(--tf-blue);
}

.tf-social svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tf-social a:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
}

.tf-main {
    padding: 34px 0 62px;
    background: var(--tf-white);
}

.tf-main--home {
    padding-top: 0;
}

.tf-logout-message {
    text-align: center;
}

.tf-footer {
    background: var(--tf-blue);
    color: var(--tf-white);
}

.tf-footer__inner {
    padding: 0;
}

.tf-footer__top {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) max-content;
    gap: 48px;
    align-items: center;
    padding: 24px 0 0;
}
.tf-footer__brand{
    justify-self: center;
}

.tf-footer__brand img {
    display: block;
    width: 180px;
    max-width: 180px;
    height: auto;
}

.tf-footer__unc-logo {
    display: block;
    justify-self: end;
    max-width: 420px;
    height: 100%;
}

.tf-footer__unc-logo img {
    display: block;
    width: 100%;
    height: 100%;

}

.tf-footer__nav ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-items: end;
    width: max-content;
}

.tf-footer__nav a {
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    text-decoration: none;
}

.tf-footer__nav a:hover,
.tf-footer__nav a:focus-visible {
    color: var(--tf-white);
    text-decoration: underline;
}

.tf-footer__accessibility {
    margin: 0;
    padding: 12px 0;
    color: var(--tf-white);
    font-size: .8125rem;
}

.tf-footer__accessibility a {
    color: var(--tf-white);
    font-weight: 700;
    text-decoration: underline;
}

.tf-eyebrow {
    margin: 0 0 7px;
    color: var(--tf-red);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: var(--tf-blue);
    letter-spacing: 0;
}

h1,
h2 {
    font-family: Lora, Georgia, "Times New Roman", serif;
}

h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
}

h2 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.18;
}

h3 {
    margin: 0;
    font-size: 1.04rem;
}

p {
    margin-top: .55rem;
}

.tf-lede {
    max-width: 68ch;
    color: var(--tf-muted);
    font-size: 1.06rem;
}

.tf-hero {
    margin-bottom: 0;
    background: var(--tf-blue);
    color: var(--tf-white);
}

.tf-hero__inner {
    min-height: 255px;
    padding: 75px 0 55px;
}

.tf-hero h1,
.tf-hero h2,
.tf-hero p,
.tf-hero .tf-eyebrow {
    color: var(--tf-white);
}

.tf-hero .tf-eyebrow {
    color: var(--tf-gold);
}

.tf-hero h1 {
    font-size: clamp(2.05rem, 4vw, 2.9375rem);
    font-weight: 300;
    line-height: 1.2;
}

.tf-hero p {
    margin: 8px 0 0;
    font-size: clamp(1.05rem, 1.6vw, 1.1875rem);
    font-style: italic;
    font-weight: 700;
}

.tf-hero__panel {
    border-top: 5px solid var(--tf-gold);
    padding: 18px;
    background: rgba(255, 255, 255, .1);
}

.tf-home {
    padding-top: 46px;
}

.tf-intro {
    max-width: 1180px;
}

.tf-intro h2 {
    font-size: clamp(1.6rem, 2.3vw, 2rem);
    line-height: 1.15;
}

.tf-intro p {
    margin: 17px 0 0;
    color: var(--tf-ink);
    font-size: 1rem;
    line-height: 1.75;
}

.tf-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    padding: 50px 0 48px;
}

.tf-feature {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
}

.tf-feature img {
    width: min(120px, 46%);
    aspect-ratio: 1;
    object-fit: contain;
}

.tf-feature h2 {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 900;
}

.tf-feature p {
    max-width: 25ch;
    margin: 0;
    color: var(--tf-ink);
    font-size: 1.02rem;
    line-height: 1.55;
}

.tf-home--applicant {
    display: grid;
    gap: 22px;
}

.tf-home-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 26px;
    align-items: start;
}

.tf-home-intro h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.tf-home-workflow h2 {
    margin-bottom: 16px;
}

.tf-workflow-list {
    display: grid;
    gap: 12px;
}

.tf-workflow-list div {
    padding: 12px 14px;
    border-left: 4px solid var(--tf-teal);
    background: #f9fbfd;
}

.tf-workflow-list strong,
.tf-workflow-list span,
.tf-home-status strong,
.tf-home-status span {
    display: block;
}

.tf-workflow-list span,
.tf-home-status span {
    margin-top: 4px;
    color: var(--tf-muted);
    font-size: .94rem;
    line-height: 1.45;
}

.tf-home-status {
    min-height: 132px;
    border-top: 4px solid var(--tf-gold);
}

.tf-access-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    margin: 0 0 8px;
    padding: 25px 30px;
    border-top: 7px solid var(--tf-blue);
    background: #dce7ef;
    box-shadow: var(--tf-shadow);
}

.tf-access-panel h2 {
    font-size: 1.55rem;
}

.tf-access-panel p {
    max-width: 68ch;
    margin: 8px 0 0;
}

.tf-access-panel .tf-eyebrow {
    color: var(--tf-blue);
}

.tf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    align-items: center;
}

.tf-alert {
    margin: 0 0 18px;
    padding: 13px 16px;
    border-radius: 6px;
    border: 1px solid var(--tf-line);
    background: var(--tf-white);
}

.tf-alert--success {
    border-color: #9fd3b4;
    border-left: 5px solid var(--tf-success);
    background: #edf8ef;
    color: #075d1c;
}

.tf-alert--warning {
    border-color: #e5ca70;
    border-left: 5px solid var(--tf-gold);
    background: #fff9df;
    color: #5a4300;
}

.tf-alert--danger {
    border-color: #e7a7bb;
    border-left: 5px solid var(--tf-red);
    background: #fff2f6;
    color: #84203d;
}

.tf-alert--deadline {
    border-left-width: 7px;
    font-size: 1.05rem;
}

.tf-alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.tf-card,
.tf-panel,
.tf-form-shell {
    border: 1px solid var(--tf-line);
    border-radius: 4px;
    background: var(--tf-white);
    box-shadow: var(--tf-shadow);
}

.tf-card,
.tf-panel {
    padding: 23px;
}

#admin-applications-results .tf-card + .tf-card {
    margin-top: 16px; 
}

.tf-panel form {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.tf-panel .tf-login-divider + form {
    margin-top: 0;
}

.tf-panel .tf-check-group + form,
.tf-panel .tf-demo-login-box + form {
    padding-top: 18px;
    border-top: 1px solid var(--tf-line);
}

.tf-login-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    margin: 18px 0;
    color: var(--tf-muted);
    font-size: .85rem;
    font-weight: 800;
}

.tf-login-divider::before,
.tf-login-divider::after {
    height: 1px;
    background: var(--tf-line);
    content: '';
}

.tf-panel form .tf-button {
    width: 100%;
}

.tf-demo-login-box {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid #c5d6e2;
    border-left: 5px solid var(--tf-blue);
    border-radius: 4px;
    background: #f2f7fa;
}

.tf-demo-login-box h3 {
    margin: 0;
    color: var(--tf-blue);
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tf-demo-login-box__intro {
    margin: -4px 0 0;
    color: #40515d;
    font-size: .92rem;
}

.tf-demo-login-box form {
    margin-top: 0;
}

.tf-demo-login-box .tf-button {
    width: 100%;
}

.tf-demo-login-box .tf-fine-print {
    margin: 0;
    color: #40515d;
}

.tf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tf-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tf-grid--stacked {
    grid-template-columns: 1fr;
}

.tf-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tf-grid--metrics {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tf-grid--dashboard {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
    align-items: start;
    gap: 20px;
}

.tf-login-column {
    display: grid;
    gap: 16px;
    align-content: start;
}

.tf-login-column .tf-demo-login-box {
    margin-top: 0;
}

.tf-full {
    grid-column: 1 / -1;
}

.tf-page-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    margin-bottom: 22px;
}

.tf-id-box {
    min-width: 230px;
    padding: 13px 15px;
    border: 1px solid var(--tf-line);
    border-top: 5px solid var(--tf-gold);
    border-radius: 8px;
    background: var(--tf-white);
}

.tf-id-box span,
.tf-meta-label {
    display: block;
    color: var(--tf-muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tf-id-box strong {
    display: block;
    margin-top: 3px;
    color: var(--tf-blue);
}

.tf-window-list {
    display: grid;
    gap: 9px;
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
}

.tf-window-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid var(--tf-line);
    border-left: 4px solid #91a6b9;
    border-radius: 6px;
    background: #f9fbfc;
}

.tf-window-list li.is-open {
    border-left-color: var(--tf-success);
    background: #f1f8f4;
}

.tf-window-list strong,
.tf-window-list span,
.tf-window-list em {
    display: block;
}

.tf-window-list strong {
    color: var(--tf-blue);
    line-height: 1.2;
}

.tf-window-list span {
    margin-top: 2px;
    color: var(--tf-muted);
    font-size: .88rem;
}

.tf-window-list em {
    padding: 4px 8px;
    border-radius: 7px;
    background: #e6f0f7;
    color: var(--tf-blue);
    font-size: .76rem;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.tf-window-list li.is-open em {
    background: #dff1e7;
    color: #1e6a49;
}

.tf-window-list--inline {
    max-width: 720px;
}

.tf-dashboard-cycle {
    margin-bottom: 18px;
}

.tf-application-stepper {
    margin: 0 0 32px;
}

.tf-application-stepper__bar {
    height: 6px;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--tf-line);
}

.tf-application-stepper__fill {
    display: block;
    width: var(--tf-progress-width, 0%);
    height: 100%;
    border-radius: inherit;
    background: var(--tf-teal);
    transition: width .3s ease;
}

.tf-application-stepper ol {
    display: grid;
    grid-template-columns: repeat(var(--tf-step-count, 4), minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tf-application-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 0;
    padding: 0;
    color: var(--tf-muted);
    text-align: center;
}

.tf-application-step a,
.tf-application-step__static {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.tf-application-step__marker {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--tf-sky);
    color: var(--tf-ink);
    font-size: .85rem;
    font-weight: 800;
    transition: background .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.tf-application-step__body {
    min-width: 0;
    margin-top: 6px;
}

.tf-application-step__body strong {
    display: block;
    color: var(--tf-muted);
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.2;
}

.tf-application-step.is-active .tf-application-step__body strong {
    color: var(--tf-blue);
}

.tf-application-step.is-complete .tf-application-step__marker {
    background: var(--tf-success);
    color: var(--tf-white);
}

.tf-application-step.is-complete .tf-application-step__body strong {
    color: var(--tf-blue);
}

.tf-application-step.is-active .tf-application-step__marker {
    background: var(--tf-blue);
    box-shadow: 0 0 0 3px rgba(14, 66, 106, .14);
    color: var(--tf-white);
}

.tf-application-step.is-disabled {
    color: var(--tf-muted);
    opacity: .82;
}

.tf-application-step a:hover .tf-application-step__marker {
    transform: translateY(-1px);
}

.tf-login-stepper {
    margin: 0 0 24px;
    color: var(--tf-ink);
    font-size: .9rem;
}

.tf-login-stepper ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tf-login-stepper__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tf-login-stepper__marker {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--tf-sky);
    color: var(--tf-ink);
    font-size: .78rem;
    font-weight: 900;
}

.tf-login-stepper__item.is-active .tf-login-stepper__marker {
    background: var(--tf-blue);
    color: var(--tf-white);
}

.tf-login-stepper__arrow {
    color: var(--tf-blue);
}

.tf-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 22px;
    align-items: start;
}

.tf-application-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.tf-form-shell {
    padding: 25px;
}

.tf-sidebar {
    position: sticky;
    top: 16px;
    display: grid;
    gap: 16px;
}

.tf-sidebar .tf-card {
    padding: 20px;
    border-radius: 8px;
    box-shadow: none;
}

.tf-sidebar .tf-card + .tf-card {
    margin-top: 0;
}

.tf-sidebar .tf-meta-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tf-ink);
    font-size: .96rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: none;
}

.tf-sidebar .tf-meta-label i {
    width: 18px;
    color: var(--tf-ink);
    text-align: center;
}

.tf-sidebar-card__value {
    display: block;
    margin-top: 15px;
    color: var(--tf-muted);
    font-size: .96rem;
    font-weight: 600;
    line-height: 1.45;
}

.tf-sidebar .tf-help-card {
    border-color: var(--tf-teal);
    background: #eaf6fb;
}

.tf-sidebar .tf-help-card .tf-meta-label,
.tf-sidebar .tf-help-card .tf-meta-label i {
    color: var(--tf-teal);
}

.tf-sidebar .tf-help-card .tf-fine-print {
    margin-top: 15px;
}

.tf-section {
    padding: 25px 0;
    border-top: 1px solid var(--tf-line);
}

.tf-section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.tf-section-header {
    margin-bottom: 16px;
}

.tf-section-header p {
    max-width: 78ch;
    margin: 6px 0 0;
    color: var(--tf-muted);
    font-size: .94rem;
}

.tf-section-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--tf-blue);
    font-weight: 900;
    font-size: .86rem;
}

.tf-field {
    /*display: block;*/
    display: grid;
    min-width: 0;
    color: var(--tf-blue);
    font-weight: 500;
    grid-template-rows: minmax(24px, auto) auto minmax(48px, auto);
}

fieldset.tf-field {
    margin: 0;
    padding: 0;
    border: 0;
}

.tf-field > label,
.tf-field > legend {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: var(--tf-ink);
    font-weight: 800;
}

.tf-field > legend {
    margin-bottom: 10px;
}

.tf-field-icon {
    display: inline-flex;
    width: 22px;
    flex: 0 0 22px;
    justify-content: center;
    color: var(--tf-blue);
}

.tf-required-note {
    margin: -8px 0 20px;
    color: var(--tf-muted);
    font-size: .92rem;
    font-weight: 700;
}

.tf-required {
    display: inline !important;
    margin: 0 0 0 3px !important;
    color: #b42318 !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
}

.tf-field--compact-label {
    font-weight: 500;
}

.tf-field--compact-label > label,
.tf-field--compact-label > legend {
    font-weight: 500;
}

.tf-field .tf-field-help {
    display: inline-block;
    margin-top: 4px;
    color: var(--tf-muted);
    font-size: .86rem;
    /*font-weight: 500;*/
    line-height: 1.1rem;
}

.tf-field input,
.tf-field select,
.tf-field textarea {
    width: 100%;
    margin-top: 6px;
    padding: 10px 12px;
    border: 1px solid #b9c5ce;
    border-radius: 4px;
    background: var(--tf-white);
    color: var(--tf-ink);
    grid-row: 3;
    align-self: end;
}

input::placeholder,
textarea::placeholder {
    color: #87939a;
    opacity: 1;
}

.tf-field input[type="email"],
.tf-field input[type="url"],
.tf-field input[type="tel"],
.tf-field input[type="number"],
.tf-field input[type="date"],
.tf-field select{
    height: 48px;
}

.tf-field input[type="file"] {
    padding: 9px 12px;
}

.tf-file-picker {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 6px;
    padding: 9px 12px;
    border: 1px solid #b9c5ce;
    border-radius: 4px;
    background: var(--tf-white);
}

.tf-file-picker__input {
    position: absolute;
    width: 1px !important;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.tf-file-picker__button {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid #b9c5ce;
    border-radius: 4px;
    background: #edf2f5;
    color: var(--tf-ink);
    font: inherit;
    font-size: .9rem;
    font-weight: 800;
    cursor: pointer;
}

.tf-file-picker__button:hover {
    background: #e0e8ed;
}

.tf-file-picker__button:disabled {
    cursor: not-allowed;
    opacity: .65;
}

.tf-file-picker__input:focus + .tf-file-picker__button,
.tf-file-picker__button:focus {
    outline: 4px solid rgba(254, 197, 36, .38);
    border-color: var(--tf-blue);
}

.tf-file-picker__name {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--tf-ink);
    font-size: .9rem;
    font-weight: 900;
}

.tf-field input:focus,
.tf-field select:focus,
.tf-field textarea:focus {
    outline: 4px solid rgba(254, 197, 36, .38);
    border-color: var(--tf-blue);
}

.tf-field input[readonly],
.tf-field textarea[readonly],
.tf-field select:disabled {
    background: #edf2f5;
    color: var(--tf-muted);
}

.tf-field textarea {
    min-height: 128px;
    resize: vertical;
}

.tf-word-count {
    display: block;
    margin-top: 6px;
    color: var(--tf-muted);
    font-size: .86rem;
    font-weight: 500;
}

.tf-field--essay textarea {
    min-height: 210px;
}

.tf-choice-list {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.tf-choice-card {
    /*display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;*/
    align-items: start;
    padding: 12px 14px;
    border: 1px solid #b9c5ce;
    border-radius: 4px;
    background: var(--tf-white);
    color: var(--tf-ink);
    cursor: pointer;
    font-weight: 700;
}

.tf-choice-card:hover {
    border-color: var(--tf-blue);
    background: #f8fbfd;
}

.tf-choice-card:has(input:checked) {
    border-color: var(--tf-blue);
    background: #edf6fb;
    box-shadow: inset 4px 0 0 var(--tf-blue);
}

.tf-choice-card input {
    width: auto;
    margin: 3px 0 0;
}

.tf-field .tf-choice-card span {
    margin-top: 0;
    color: var(--tf-ink);
    font-size: .95rem;
    font-weight: 700;
}

.tf-form-note {
    margin: 0;
    color: var(--tf-muted);
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.5;
}

.tf-word-count {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 6px;
    color: var(--tf-muted);
    font-size: .86rem;
    font-weight: 700;
}

.tf-card-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.tf-card-option {
    display: grid;
    gap: 8px;
    justify-items: center;
    min-height: 118px;
    padding: 16px 12px;
    border: 2px solid var(--tf-line);
    border-radius: 8px;
    background: var(--tf-white);
    color: var(--tf-ink);
    text-align: center;
    cursor: pointer;
}

.tf-card-option:hover,
.tf-card-option:focus-within {
    border-color: var(--tf-blue);
    background: #f4f9fc;
}

.tf-card-option.selected {
    border-color: var(--tf-blue);
    background: #eef5f9;
    box-shadow: inset 0 -4px 0 var(--tf-gold);
}

.tf-card-icon {
    color: var(--tf-blue);
    font-size: 1.7rem;
    line-height: 1;
}

.tf-card-label {
    color: var(--tf-ink);
    font-weight: 900;
    line-height: 1.2;
}

.tf-collapsible-header {
    width: 100%;
    justify-content: flex-start;
    margin: 0 0 12px;
    text-align: left;
}

.tf-collapsible-arrow {
    transition: transform .18s ease;
}

.tf-collapsible-header.active .tf-collapsible-arrow {
    transform: rotate(180deg);
}

.tf-collapsible-content {
    display: none;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid var(--tf-line);
    border-left: 5px solid var(--tf-gold);
    border-radius: 6px;
    background: #fbfcfd;
}

.tf-collapsible-content.active {
    display: block;
}

.tf-collapsible-content ul {
    margin: 10px 0 0;
    padding-left: 20px;
    color: var(--tf-muted);
    font-weight: 500;
}

.tf-example-box {
    margin-top: 14px;
    padding: 13px;
    border-left: 4px solid var(--tf-blue);
    background: var(--tf-white);
    color: var(--tf-muted);
    font-size: .94rem;
    font-style: italic;
    font-weight: 500;
}

.tf-video-guide {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
    padding: 17px;
    border: 1px solid #bdd4e4;
    border-left: 5px solid var(--tf-blue);
    border-radius: 8px;
    background: #f0f7fb;
}

.tf-video-guide-step {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.tf-video-guide-number {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--tf-blue);
    color: var(--tf-white);
    font-weight: 900;
}

.tf-video-guide-step strong,
.tf-video-guide-step span {
    display: block;
}

.tf-video-guide-step span {
    margin-top: 2px;
    color: var(--tf-muted);
    font-size: .9rem;
}

.tf-check-group {
    display: grid;
    gap: 10px;
}

.tf-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    min-height: 48px;
    padding: 12px;
    border: 1px solid var(--tf-line);
    border-left: 4px solid var(--tf-gold);
    border-radius: 6px;
    background: #f9fbfc;
    font-weight: 800;
}

.tf-check input {
    flex: 0 0 auto;
    width: auto;
    margin: 3px 0 0;
}

.tf-check span {
    display: block;
    color: var(--tf-muted);
    font-size: .88rem;
    font-weight: 500;
}

.tf-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--tf-line);
}

.tf-wizard-layout {
    grid-template-columns: 320px minmax(0, 1fr);
}

.tf-wizard-sidebar {
    position: sticky;
    top: 16px;
}

.tf-wizard-nav {
    display: grid;
    gap: 8px;
}

.tf-step-link {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 58px;
    padding: 10px;
    border: 1px solid var(--tf-line);
    border-left: 4px solid transparent;
    border-radius: 6px;
    background: var(--tf-white);
    color: var(--tf-ink);
    text-decoration: none;
}

.tf-step-link:hover {
    border-color: #b4c3cf;
    border-left-color: var(--tf-gold);
    background: #f8fafb;
}

.tf-step-link.is-active {
    border-color: #9bb0bf;
    border-left-color: var(--tf-blue);
    background: #eef5f9;
}

.tf-step-link.is-complete .tf-step-number {
    border-color: var(--tf-success);
    background: var(--tf-success);
    color: var(--tf-white);
}

.tf-step-link.is-disabled {
    color: var(--tf-muted);
    background: #f5f7f8;
}

.tf-step-number {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 2px solid #93a5b4;
    border-radius: 999px;
    color: var(--tf-blue);
    font-size: .86rem;
    font-weight: 900;
}

.tf-step-link strong,
.tf-step-link em {
    display: block;
}

.tf-step-link em {
    margin-top: 1px;
    color: var(--tf-muted);
    font-size: .78rem;
    font-style: normal;
    font-weight: 700;
}

.tf-wizard-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.tf-wizard-page-head h2 {
    margin: 0;
}

.tf-guidance {
    margin-bottom: 22px;
    padding: 15px 16px;
    border: 1px solid #c9d8e2;
    border-left: 5px solid var(--tf-blue);
    border-radius: 6px;
    background: #f4f9fc;
}

.tf-guidance span {
    display: block;
    color: var(--tf-blue);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tf-guidance p {
    max-width: 78ch;
    margin: 4px 0 0;
    color: var(--tf-ink);
}

.tf-question-group {
    padding: 24px 0 24px;
}

.tf-question-group + .tf-question-group {
    padding-top: 24px;
    border-top: 1px solid var(--tf-line);
}

.tf-question-group.is-section-title-hidden {
    border-top: 0;
}

.tf-question-group h3 {
    margin: 0;
    color: var(--tf-blue);
    font-family: Lora, Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.tf-review-stack {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.tf-review-section {
    padding: 18px;
    border: 1px solid var(--tf-line);
    border-radius: 8px;
    background: #fbfcfd;
}

.tf-review-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 12px;
}

.tf-review-section__head h4,
.tf-attestation-panel h4 {
    margin: 0;
    color: var(--tf-blue);
    font-size: 1.05rem;
}

.tf-review-section__head a {
    font-weight: 900;
}

.tf-review-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.tf-review-list div {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
    padding: 6px 0;
    border-top: 1px solid var(--tf-line);
    align-items: center;
}

.tf-review-list div:first-child {
    border-top: 0;
    padding-top: 0;
}

.tf-review-list dt {
    color: var(--tf-ink);
    font-size: .93rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
}

.tf-review-list dd {
    margin: 0;
    color: var(--tf-muted);
    font-weight: 400;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.tf-review-muted {
    color: var(--tf-muted);
    font-size: .88rem;
    font-weight: 600;
}

.tf-review-missing {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 9px;
    border: 1px solid #d69a2d;
    border-left: 4px solid var(--tf-gold);
    border-radius: 6px;
    background: #fff7e0;
    color: #5d3c00;
    font-weight: 900;
}

.tf-attestation-panel {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #d7c37a;
    border-left: 5px solid var(--tf-gold);
    border-radius: 6px;
    background: #fffaf0;
}

.tf-attestation-panel .tf-grid {
    margin-top: 12px;
}

.tf-attestation-copy,
.tf-review-copy,
.tf-signature-statement {
    margin: 10px 0 0;
    color: var(--tf-muted);
    font-size: .94rem;
    font-weight: 600;
    line-height: 1.55;
}

.tf-signature-field {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e7d9a4;
}

.tf-signature-field h5 {
    margin: 0;
    color: var(--tf-ink);
    font-size: .98rem;
}

.tf-signature-pad {
    display: grid;
    gap: 10px;
}

.tf-signature-canvas {
    width: 100%;
    height: 180px;
    border: 1px solid #b9c5ce;
    border-radius: 4px;
    background: var(--tf-white);
    cursor: crosshair;
    touch-action: none;
}

.tf-signature-actions {
    display: flex;
    justify-content: flex-end;
}

.tf-signature-preview {
    display: block;
    max-width: 320px;
    width: 100%;
    min-height: 72px;
    border: 1px solid var(--tf-line);
    border-radius: 4px;
    background: var(--tf-white);
}

.is-hidden {
    display: none !important;
}

.tf-wizard-actions .tf-button--primary {
    min-width: 120px;
}

.tf-wizard-actions {
    justify-content: space-between;
    gap: 16px;
}

.tf-wizard-actions__group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.tf-wizard-actions__group--primary {
    justify-content: flex-end;
    margin-left: auto;
}

.tf-wizard-actions__note {
    flex: 0 0 100%;
    margin: -4px 0 0;
}

.tf-step-progress-text {
    color: var(--tf-muted);
    font-size: .9rem;
    font-weight: 900;
}

.tf-button:disabled {
    opacity: .62;
    cursor: not-allowed;
}

.tf-button--primary:disabled:hover {
    background: var(--tf-blue);
}

.tf-help-card {
    border-color: var(--tf-teal);
    background: #eaf6fb;
}

.tf-help-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--tf-blue);
    color: var(--tf-white);
    box-shadow: 0 4px 12px rgba(15, 72, 118, .3);
    font-size: 1.45rem;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tf-help-button:hover {
    background: var(--tf-blue-2);
    box-shadow: 0 6px 16px rgba(15, 72, 118, .4);
    transform: scale(1.1);
}

.tf-help-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .5);
}

.tf-help-modal.active {
    display: flex;
}

.tf-help-modal__content {
    position: relative;
    width: min(100%, 500px);
    max-height: min(80vh, 680px);
    overflow-y: auto;
    padding: 28px;
    border-radius: 10px;
    background: var(--tf-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
}

.tf-help-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.tf-help-modal__head h2 {
    margin: 0;
    color: var(--tf-blue);
}

.tf-help-modal__close {
    flex: 0 0 auto;
    width: 34px;
    min-height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--tf-white);
    color: var(--tf-muted);
    font-size: 1.25rem;
}

.tf-help-modal__close:hover {
    background: #f4f7fa;
    color: var(--tf-ink);
}

.tf-help-faq {
    display: grid;
    gap: 0;
    margin-top: 20px;
}

.tf-help-faq > div {
    padding: 0 0 16px;
    border-bottom: 1px solid var(--tf-line);
}

.tf-help-faq > div + div {
    padding-top: 16px;
}

.tf-help-faq > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.tf-help-faq strong,
.tf-help-faq p {
    display: block;
}

.tf-help-faq strong {
    color: var(--tf-ink);
    font-size: .95rem;
}

.tf-help-faq strong i {
    margin-right: 6px;
    color: var(--tf-blue);
}

.tf-help-faq p {
    margin: 6px 0 0;
    color: var(--tf-muted);
    font-size: .95rem;
}

.tf-fine-print {
    color: var(--tf-muted);
    font-size: .9rem;
}

.tf-progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 16px 0 7px;
    font-weight: 800;
}

.tf-progress-track {
    height: 13px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--tf-line);
}

.tf-progress-value {
    height: 100%;
    border-radius: inherit;
    background: var(--tf-blue);
}

.tf-checklist,
.tf-work-list,
.tf-quick-links {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.tf-checklist li {
    position: relative;
    padding: 10px 0 10px 31px;
    border-top: 1px solid var(--tf-line);
}

.tf-checklist li::before {
    position: absolute;
    left: 3px;
    top: 10px;
    width: 19px;
    height: 19px;
    border: 2px solid #8ca0b1;
    border-radius: 50%;
    content: '';
}

.tf-checklist li.complete::before {
    border-color: var(--tf-success);
    background: var(--tf-success);
}

.tf-checklist li.complete::after {
    position: absolute;
    left: 9px;
    top: 13px;
    width: 5px;
    height: 9px;
    border: solid var(--tf-white);
    border-width: 0 2px 2px 0;
    content: '';
    transform: rotate(45deg);
}

.tf-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 8px;
    background: #e6f0f7;
    color: var(--tf-blue);
    font-size: .78rem;
    font-weight: 900;
}

.tf-filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(145px, 1fr)) auto;
    gap: 12px;
    align-items: end;
}

.tf-filter-bar__actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tf-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.tf-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--tf-ink);
}

.tf-table th,
.tf-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--tf-line);
    text-align: left;
    vertical-align: top;
}

.tf-table th {
    color: var(--tf-blue);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tf-table small {
    color: var(--tf-muted);
    overflow-wrap: anywhere;
}

.tf-pagination {
    margin: 0 0 18px;
}

.tf-pagination-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px;
}

.tf-pagination-row .tf-pagination--top {
    flex: 1 1 auto;
    margin: 0;
}

.tf-pagination-count {
    flex: 0 0 auto;
    color: var(--tf-muted);
    font-weight: 800;
    white-space: nowrap;
}

.tf-pagination--bottom {
    margin: 18px 0 0;
}

.tf-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tf-pagination .page-item {
    display: block;
    margin: 0;
    padding: 0;
}

.tf-pagination .page-link {
    display: inline-flex;
    min-width: 38px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border: 1px solid var(--tf-line);
    border-radius: 0;
    background: var(--tf-white);
    color: var(--tf-blue);
    font-weight: 800;
    text-decoration: none;
}

.tf-pagination .page-item + .page-item .page-link {
    margin-left: -1px;
}

.tf-pagination .page-item.active .page-link {
    position: relative;
    z-index: 1;
    border-color: var(--tf-blue);
    background: var(--tf-blue);
    color: var(--tf-white);
}

.tf-pagination a.page-link:hover,
.tf-pagination a.page-link:focus {
    position: relative;
    z-index: 2;
    border-color: var(--tf-blue);
    background: var(--tf-blue-2);
    color: var(--tf-white);
    text-decoration: none;
}

.tf-pagination .pagination-ellipsis .page-link {
    color: var(--tf-muted);
}

.tf-pagination .page-item.disabled .page-link {
    border-color: var(--tf-line);
    background: var(--tf-soft);
    color: var(--tf-muted);
    cursor: default;
}

@media (max-width: 640px) {
    .tf-pagination-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

.tf-user-choice:disabled {
    opacity: .58;
    cursor: not-allowed;
}

.tf-metric {
    min-height: 132px;
    padding: 19px;
    border: 1px solid var(--tf-line);
    border-top: 5px solid var(--tf-blue);
    border-radius: 8px;
    background: var(--tf-white);
    box-shadow: 0 4px 16px rgba(53, 63, 67, .05);
}

.tf-metric--gold {
    border-top-color: var(--tf-gold);
}

.tf-metric--red {
    border-top-color: var(--tf-red);
}

.tf-metric strong {
    display: block;
    margin-top: 7px;
    color: var(--tf-blue);
    font-family: Lora, Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    line-height: 1;
}

.tf-metric span,
.tf-work-list span {
    color: var(--tf-muted);
    font-size: .9rem;
}

.tf-metric small {
    display: block;
    margin-top: 9px;
    color: var(--tf-muted);
    font-size: .82rem;
    line-height: 1.35;
}

.tf-work-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid var(--tf-line);
}

.tf-work-list strong,
.tf-work-list span {
    display: block;
}

.tf-work-list span {
    margin-top: 3px;
}

.tf-quick-links li + li {
    margin-top: 9px;
}

.tf-quick-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid var(--tf-line);
    border-radius: 5px;
    color: var(--tf-blue);
    font-weight: 800;
    text-decoration: none;
}

.tf-quick-links a:hover {
    border-color: var(--tf-blue);
    background: #f4f9fc;
}

.tf-empty {
    padding: 24px;
    border: 2px dashed #a8b8c5;
    border-radius: 8px;
    background: #f8fafb;
    text-align: center;
}

.tf-detail-list {
    display: grid;
    gap: 12px;
}

.tf-detail {
    border-left: 5px solid var(--tf-gold);
    background: #f9fbfc;
    padding: 12px 14px;
}

.tf-detail strong {
    display: block;
}

.tf-detail span {
    display: block;
    color: var(--tf-muted);
    font-size: .94rem;
}

.tf-demo-badge {
    flex: 0 0 auto;
    padding: 4px 9px;
    border-radius: 8px;
    background: #fff5ce;
    color: #6a4b00;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tf-current-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.tf-current-user strong,
.tf-current-user span {
    display: block;
}

.tf-current-user strong {
    color: var(--tf-blue);
    font-size: 1.12rem;
}

.tf-current-user span:not(.tf-meta-label) {
    color: var(--tf-muted);
}

.tf-user-section {
    margin-top: 22px;
}

.tf-user-section .tf-page-head {
    margin-bottom: 12px;
}

.tf-user-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.tf-user-grid form {
    min-width: 0;
    margin: 0;
}

.tf-user-choice {
    display: grid;
    width: 100%;
    min-height: 112px;
    gap: 10px;
    align-content: space-between;
    padding: 14px;
    border: 1px solid #91a6b9;
    border-radius: 8px;
    background: var(--tf-white);
    color: var(--tf-ink);
    text-align: left;
    cursor: pointer;
}

.tf-user-choice:hover {
    border-color: var(--tf-blue);
    background: #f4f9fc;
}

.tf-user-choice[aria-pressed="true"] {
    border: 2px solid var(--tf-blue);
    background: #e8f1f7;
    box-shadow: inset 0 -4px 0 var(--tf-gold);
}

.tf-user-choice strong,
.tf-user-choice small,
.tf-user-choice em {
    display: block;
}

.tf-user-choice strong {
    color: var(--tf-blue);
    font-size: 1rem;
    line-height: 1.2;
}

.tf-user-choice small {
    color: var(--tf-muted);
    overflow-wrap: anywhere;
}

.tf-user-choice em {
    color: var(--tf-ink);
    font-size: .84rem;
    font-style: normal;
    font-weight: 800;
}

.tf-role-toggle {
    width: 100%;
    min-height: 58px;
    border-color: #91a6b9;
    color: var(--tf-blue);
    text-align: left;
}

.tf-role-toggle[aria-pressed="true"] {
    border-color: var(--tf-blue);
    background: var(--tf-blue);
    color: var(--tf-white);
    box-shadow: inset 0 -4px 0 var(--tf-gold);
}

.tf-role-toggle span {
    display: block;
    font-size: .78rem;
    font-weight: 500;
    opacity: .84;
}

@media (max-width: 920px) {
    .tf-header__inner,
    .tf-form-layout,
    .tf-page-head,
    .tf-home-intro,
    .tf-access-panel,
    .tf-grid--dashboard {
        grid-template-columns: 1fr;
    }

    .tf-header__inner {
        gap: 14px;
        min-height: 0;
    }

    .tf-nav {
        justify-content: flex-start;
    }

    .tf-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tf-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tf-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tf-filter-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tf-filter-bar__actions {
        grid-column: 1 / -1;
    }

    .tf-user-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tf-application-stepper ol {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {
    .tf-container {
        width: min(100% - 28px, 1180px);
    }

    .tf-header__inner {
        padding: 14px 0;
    }

    .tf-brand img {
        width: min(260px, 84vw);
        max-width: 100%;
    }

    .tf-nav {
        gap: 7px 10px;
    }

    .tf-application-stepper ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 14px;
    }

    .tf-help-button {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
        min-height: 48px;
        font-size: 1.25rem;
    }

    .tf-nav a,
    .tf-nav button {
        min-height: 34px;
        padding: 6px 7px;
        font-size: .9rem;
    }

    .tf-social {
        width: 100%;
        padding-top: 2px;
    }

    .tf-social a {
        width: 28px;
        height: 28px;
        min-height: 28px;
        padding: 0;
    }

    .tf-social svg {
        width: 24px;
        height: 24px;
    }

    .tf-actions,
    .tf-form-actions {
        width: 100%;
    }

    .tf-actions .tf-button,
    .tf-form-actions .tf-button,
    .tf-logout-form {
        width: 100%;
    }

    .tf-grid,
    .tf-grid--three,
    .tf-grid--four,
    .tf-filter-bar,
    .tf-review-list,
    .tf-user-grid,
    .tf-sidebar,
    .tf-footer__top {
        grid-template-columns: 1fr;
    }

    .tf-footer__unc-logo {
        justify-self: revert;
    }

    .tf-footer__nav ul {
        justify-items: start;
    }

    .tf-review-list div:nth-child(-n + 2) {
        border-top: 1px solid var(--tf-line);
    }

    .tf-review-list div:first-child {
        border-top: 0;
    }

    .tf-review-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .tf-wizard-actions__group,
    .tf-wizard-actions__group--primary {
        width: 100%;
        justify-content: stretch;
        margin-left: 0;
    }

    .tf-step-progress-text {
        width: 100%;
    }

    .tf-wizard-page-head,
    .tf-review-section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .tf-window-list li {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .tf-window-list em {
        justify-self: start;
    }

    .tf-current-user {
        align-items: stretch;
        flex-direction: column;
    }

    .tf-form-shell,
    .tf-card,
    .tf-panel {
        padding: 18px;
    }

    .tf-hero__inner {
        min-height: 205px;
        padding: 54px 0 42px;
    }

    .tf-home {
        padding-top: 34px;
    }

    .tf-feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 38px 0;
    }

    .tf-access-panel {
        padding: 21px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

body::before
{    
    top: -6px;
}
