/**
 * Wohnen-Fix Portal-Shell (angelehnt an Nebenkosten-Fix AppLayout)
 * Links: feste Sidebar · Oben: nur Suche + Konto
 */
:root {
    --wf-primary: #176F50;
    --wf-primary-mid: #1F8A63;
    --wf-primary-soft: #ecfdf5;
    --wf-sidebar-w: 288px;
    --wf-topbar-h: 60px;
}

html,
body.wf-portal-shell {
    margin: 0;
    padding: 0 !important;
}

body.wf-portal-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
}

body.wf-portal-shell .wf-app {
    flex: 1 0 auto;
}

body.wf-portal-shell .portal-footer,
body.wf-portal-shell .wf-suche-site-footer {
    margin-top: auto;
    flex-shrink: 0;
}

body.portal-dashboard-page.wf-portal-shell {
    padding-top: 0 !important;
    background: #f1f5f9;
}

body.portal-dashboard-page.wf-portal-shell .portal-footer {
    margin-left: var(--wf-sidebar-w);
    max-width: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #14532d;
}

body.portal-dashboard-page.wf-portal-shell .portal-footer--brand {
    background: #14532d;
}

/* Inhalt linksbündig unter dem Main (nicht zentriert in der Content-Spalte) */
body.portal-dashboard-page.wf-portal-shell .portal-footer--brand .portal-footer__inner {
    max-width: none;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

body.portal-dashboard-page.wf-portal-shell .portal-footer--brand .portal-footer__home {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    font-weight: 600 !important;
}

@media (max-width: 767px) {
    body.portal-dashboard-page.wf-portal-shell .portal-footer {
        margin-left: 0;
        /* Sichtbar unter eventueller Overlay-/Drawer-UI */
        position: relative;
        z-index: 10;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }

    body.portal-dashboard-page.wf-portal-shell .portal-footer--brand .portal-footer__inner {
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    }

    body.portal-dashboard-page.wf-portal-shell .portal-footer--brand .portal-footer__home {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: end;
        width: auto;
        text-align: right;
        color: #fff !important;
        font-weight: 600 !important;
    }
}

body.layout-mieter-search.portal-dashboard-page.wf-portal-shell .portal-footer,
body.layout-mieter-search .portal-footer {
    margin-left: 0;
}

.wf-app {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
}

body.portal-dashboard-page.wf-portal-shell .wf-app {
    align-items: stretch;
}

body.portal-dashboard-page.wf-portal-shell .wf-main {
    min-height: auto;
    flex: 1 0 auto;
}

@media (max-width: 767px) {
    .wf-main {
        margin-left: 0;
    }
}

.wf-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 40;
    width: var(--wf-sidebar-w);
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--wf-primary-mid) 0%, var(--wf-primary) 55%, #0d3d12 100%);
    color: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.wf-sidebar[hidden] {
    display: none !important;
}

body.wf-sidebar-mobile-open .wf-sidebar {
    transform: translateX(0);
}

@media (max-width: 767px) {
    .wf-sidebar {
        transform: translateX(-100%);
    }
    body.wf-sidebar-mobile-open .wf-sidebar {
        transform: translateX(0);
    }
    body.wf-sidebar-mobile-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 35;
        background: rgba(15, 23, 42, 0.4);
    }
}

.wf-main {
    flex: 1;
    min-width: 0;
    margin-left: var(--wf-sidebar-w);
    margin-top: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

body.layout-mieter-search .wf-main,
body.layout-mieter-search .wf-sidebar--hidden ~ .wf-main,
body.layout-mieter-search:not(.wf-has-sidebar) .wf-main {
    margin-left: 0;
}

body.layout-mieter-search.wf-has-sidebar .wf-main {
    margin-left: var(--wf-sidebar-w);
}

.wf-topbar {
    position: sticky;
    top: 0;
    flex-shrink: 0;
    z-index: 30;
    margin-top: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: var(--wf-topbar-h);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    overflow: visible;
}

.wf-topbar__menu {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 767px) {
    .wf-topbar__menu {
        display: inline-flex;
    }
}

.wf-topbar__context {
    min-width: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wf-topbar__search {
    display: flex;
    justify-content: center;
    min-width: 0;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.wf-topbar__search-inner {
    position: relative;
    width: 100%;
}

.wf-topbar__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #94a3b8;
    pointer-events: none;
}

.wf-topbar__search-input {
    width: 100%;
    height: 42px;
    padding: 0 14px 0 40px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #f8fafc;
    font-size: 0.875rem;
    font-family: inherit;
    color: #0f172a;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.wf-topbar__search-input:focus {
    outline: none;
    border-color: var(--wf-primary-mid);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
    background: #fff;
}

.wf-topbar__auth {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
}

.wf-topbar__auth .portal-profile__btn,
.wf-topbar__auth .portal-btn {
    font-size: 0.8125rem;
}

/* Sidebar – NK-Stil, aktiv hellgrün */
.wf-sidebar__brand {
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Einheitlich mit Nebenkosten-Fix & Location-Fix:
   Icon links, daneben zweizeilig – kleine Markenzeile oben, Beschreibung darunter. */
.wf-sidebar__brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.wf-sidebar__brand-link:hover {
    opacity: 0.92;
}

.wf-sidebar__brand-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
}

/* Block-Textspalte rechts neben dem Icon (identisch zu Nebenkosten-/Location-Fix):
   flex:1 1 auto + min-width:0 sorgt dafür, dass ALLE Zeilen rechts neben dem Icon
   in einer Spalte bleiben und der Titel dort umbricht (nicht unter das Icon rutscht). */
.wf-sidebar__brand-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
}

.wf-sidebar__brand-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.wf-sidebar__brand-title {
    display: block;
    margin-top: 2px;
    font-size: 1.02rem;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Alt-Klasse (falls noch irgendwo referenziert) – bleibt unsichtbar konsistent. */
.wf-sidebar__brand-sub {
    display: block;
    margin-top: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.sidebar-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    cursor: pointer;
}

.sidebar-logo-link:hover {
    opacity: 0.92;
}

.wf-sidebar__logo-text {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
}

a.wf-sidebar__logo-text.sidebar-logo-link {
    color: #fff;
}

.wf-sidebar__nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 10px 20px;
}

.wf-sidebar__logout:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.wf-nav-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 12px;
    margin-bottom: 2px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.wf-nav-item:hover {
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
}

.wf-nav-item.is-active {
    background: var(--wf-primary-soft);
    color: var(--wf-primary);
}

.wf-nav-item.is-active .wf-nav-icon svg {
    stroke: var(--wf-primary-mid);
}

/* Gruppen-Überschriften (Start / Vermietung & Objekte / Konto & Hilfe)
   ausgeblendet – flache Navigationsliste wie bei Location-Fix. */
.wf-nav-group-label {
    display: none;
}

/* Alte Produkt-Nav & Subnav ausblenden */
body.wf-portal-shell #portalProductNavMount,
body.wf-portal-shell .portal-product-nav,
body.wf-portal-shell #legacySubnav,
body.wf-portal-shell .portal-subnav {
    display: none !important;
}

body.wf-portal-shell #wfPortalBrandHeader {
    display: none !important;
}

body.wf-portal-shell .wf-main__header {
    display: none !important;
}

body.wf-portal-shell .portal-dashboard-main {
    margin-top: 0;
    padding-top: 0;
}

body.wf-portal-shell .portal-dashboard-hero {
    margin-top: 0;
}

body.wf-suche-page .wf-main--full {
    margin-left: 0;
    width: 100%;
}

body.wf-suche-page.portal-dashboard-page.wf-portal-shell .portal-footer,
body.wf-suche-page.portal-dashboard-page.wf-portal-shell .wf-suche-site-footer,
body.expose-page.wf-portal-shell .wf-suche-site-footer {
    margin-left: 0;
}

body.wf-suche-page .wf-topbar--suche {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.wf-suche-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0;
    color: #0f172a !important;
    white-space: nowrap;
    text-decoration: none;
    height: 36px;
    line-height: 1;
}

.wf-suche-brand span {
    color: inherit !important;
}

.wf-suche-brand .fx-wordmark__fix {
    color: #1F8A63 !important;
}

.wf-suche-brand .fx-brand__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
}

.wf-suche-brand__logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
}

.wf-suche-main {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 24px clamp(16px, 3vw, 40px) 48px;
    box-sizing: border-box;
}

.wf-suche-hint {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #64748b;
}

.wf-suche-hint a {
    font-weight: 700;
    color: var(--wf-primary-mid);
}

.listing-card__img--gloss {
    filter: brightness(1.05) contrast(1.05) saturate(1.12);
    object-fit: cover;
}

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

/* Topbar – Begrüßung & Konto */
.wf-topbar__greeting-line {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.wf-topbar__greeting-hi {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.wf-topbar__greeting-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.2;
}

.wf-konto {
    position: relative;
}

.wf-konto__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px 4px 4px;
    border: none;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    color: #0f172a;
    transition: background 0.15s;
}

.wf-konto__trigger:hover {
    background: #f1f5f9;
}

.wf-konto__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--wf-primary-mid), var(--wf-primary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.wf-konto__label {
    font-size: 0.875rem;
    font-weight: 600;
}

.wf-konto__chevron {
    width: 16px;
    height: 16px;
    color: #64748b;
}

.wf-konto__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 100;
    min-width: 240px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.wf-konto__menu[hidden] {
    display: none !important;
}

.wf-konto__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: #334155;
    cursor: pointer;
}

.wf-konto__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #64748b;
}

.wf-konto__icon svg {
    width: 18px;
    height: 18px;
}

.wf-konto__sep {
    height: 1px;
    margin: 4px 8px;
    background: #f1f5f9;
}

.wf-konto__item:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.wf-konto__item--logout {
    color: #b91c1c;
}

.wf-konto__item--logout:hover {
    background: #fef2f2;
    color: #991b1b;
}

.portal-footer__link-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    font-weight: 400;
    cursor: pointer;
    text-decoration: underline;
}

.portal-footer__link-btn:hover {
    color: inherit;
    opacity: 0.95;
}

body.portal-dashboard-page .portal-footer--brand .portal-footer__link-btn {
    color: rgba(255, 255, 255, 0.8);
}

body.portal-dashboard-page .portal-footer--brand .portal-footer__link-btn:hover {
    color: #fff;
}

.wf-topbar__guest-link {
    margin-left: 10px;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #2e7d32;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
}

.wf-topbar__guest-link:hover {
    background: #f0fdf4;
}

body.wf-suche-page .wf-topbar__auth .portal-product-nav__inserat,
body.wf-suche-page .wf-topbar__auth .portal-product-nav__anmelden,
body.wf-suche-page .wf-topbar__auth .portal-product-nav__registrieren {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s ease;
}

body.wf-suche-page .wf-topbar__auth .portal-product-nav__inserat {
    border: 1px solid #1F8A63;
    color: #fff;
    background: #1F8A63;
    box-shadow: 0 6px 18px rgba(47, 107, 87, 0.2);
}

body.wf-suche-page .wf-topbar__auth .portal-product-nav__inserat:hover {
    background: #255847;
    border-color: #255847;
}

body.wf-suche-page .wf-topbar__auth .portal-product-nav__anmelden {
    border: 1px solid rgba(47, 107, 87, 0.25);
    color: #255847;
    background: #fff;
}

body.wf-suche-page .wf-topbar__auth .portal-product-nav__registrieren {
    border: 1px solid #1F8A63;
    color: #fff;
    background: #1F8A63;
    box-shadow: 0 6px 18px rgba(47, 107, 87, 0.2);
}

body.wf-suche-page .wf-topbar__auth .portal-product-nav__registrieren:hover {
    background: #255847;
    border-color: #255847;
}

/* Eingeloggt: „Inserat ab 0 Euro"-Button in exakt derselben Grünfarbe wie die
   Header-CTA der Homepage (#1F8A63), statt des helleren Farbverlaufs. */
body.wf-suche-page .wf-topbar__auth .portal-btn--switch {
    background: #1F8A63;
    border: 1px solid #1F8A63;
    color: #fff;
    box-shadow: 0 6px 18px rgba(47, 107, 87, 0.2);
}

body.wf-suche-page .wf-topbar__auth .portal-btn--switch:hover {
    background: #255847;
    border-color: #255847;
}

/* Login – zentriertes Anmeldefenster */
body.wf-login-page {
    background: #f1f5f9;
}

.wf-app--login {
    min-height: 100vh;
}

.wf-main--login {
    margin-left: 0;
    width: 100%;
    min-height: 100vh;
}

.wf-topbar--login {
    grid-template-columns: auto 1fr auto;
}

.wf-topbar__brand-link {
    text-decoration: none;
    color: var(--wf-primary-mid);
}

.wf-topbar__brand-text {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.wf-topbar__guest-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--wf-primary-mid);
    text-decoration: none;
}

.wf-topbar__guest-link:hover {
    text-decoration: underline;
}

.wf-login-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px 48px;
}

.wf-login-card {
    width: 100%;
    max-width: 440px;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.wf-login-card h1 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    color: #0f172a;
}

.wf-login-card > p {
    margin: 0 0 20px;
    font-size: 0.9rem;
    color: #64748b;
}

.portal-cross-banner {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.portal-cross-banner__text {
    margin: 0 0 12px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #334155;
}

.portal-cross-banner__email {
    font-weight: 700;
    color: #166534;
}

.portal-cross-banner__btn {
    width: 100%;
}

#portalSwitchBtn {
    cursor: pointer;
    font: inherit;
}

/* Login – Rollenwahl & Formular */
.wf-login-card .auth-role {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.wf-login-card .auth-role-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    text-align: left;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.wf-login-card .auth-role-btn:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.wf-login-card .auth-role-btn small {
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
}

.wf-login-card .auth-role-btn.is-active {
    border-color: #007a5e;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 122, 94, 0.14);
    color: #0f172a;
    transform: translateY(-1px);
}

.wf-login-card .auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wf-login-card .auth-form .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.wf-login-card .auth-form .field label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

.wf-login-card .auth-form .field input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font: inherit;
    font-size: 0.9375rem;
    color: #0f172a;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wf-login-card .auth-form .field input::placeholder {
    color: #94a3b8;
}

.wf-login-card .auth-form .field input:focus {
    outline: none;
    border-color: #007a5e;
    box-shadow: 0 0 0 3px rgba(0, 122, 94, 0.12);
}

.wf-login-card .auth-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.wf-login-card .auth-actions .portal-btn {
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 122, 94, 0.22);
}

.wf-login-card .auth-step-code {
    margin-top: 4px;
}

.wf-login-card .auth-hint {
    margin: 6px 0 0;
    font-size: 0.78rem;
    color: #64748b;
}

.wf-login-card .auth-error {
    margin: 0;
    font-size: 0.85rem;
    color: #b91c1c;
}

.wf-login-card .auth-success {
    margin: 0;
    font-size: 0.85rem;
    color: #166534;
}

.wf-login-card .auth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.8125rem;
}

.wf-login-card .auth-links a {
    color: #007a5e;
    font-weight: 600;
    text-decoration: none;
}

.wf-login-card .auth-links a:hover {
    text-decoration: underline;
}
