:root {
    --fcc-ink: #14213d;
    --fcc-muted: #5e6b83;
    --fcc-primary: #6956db;
    --fcc-primary-dark: #4b3cb3;
    --fcc-navy: #172544;
    --fcc-mint: #36c6a4;
    --fcc-mint-light: #c8f4e9;
    --fcc-surface: #f6f8fc;
    --fcc-line: #dfe5ef;
    --fcc-white: #fff;
    --fcc-shadow: 0 24px 60px rgba(20, 33, 61, .11);
}

.fcc-public-shell,
.fcc-public-shell * {
    box-sizing: border-box;
}

.fcc-public-shell {
    color: var(--fcc-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.fcc-public-shell a {
    text-decoration: none;
}

.fcc-public-shell h1,
.fcc-public-shell h2,
.fcc-public-shell h3 {
    color: inherit;
    font-family: inherit;
    font-weight: 750;
    letter-spacing: -.035em;
}

.fcc-public-shell :focus-visible {
    outline: 3px solid #f5b84b;
    outline-offset: 3px;
}

.fcc-public-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.fcc-public-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(223, 229, 239, .85);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(20, 33, 61, .06);
    backdrop-filter: blur(16px);
}

.fcc-public-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.fcc-public-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    color: var(--fcc-ink) !important;
}

.fcc-public-brand-mark {
    display: inline-flex;
    align-items: center;
}

.fcc-public-brand-mark i {
    display: block;
    width: 14px;
    height: 14px;
    margin-left: -3px;
    border: 3px solid var(--fcc-primary);
    border-radius: 50%;
    background: #fff;
}

.fcc-public-brand-mark i:first-child {
    margin-left: 0;
    border-color: var(--fcc-mint);
}

.fcc-public-brand-text {
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.fcc-public-brand-text span {
    color: var(--fcc-primary);
}

.fcc-public-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.fcc-public-nav a {
    color: #35425b;
    font-size: 14px;
    font-weight: 650;
}

.fcc-public-nav a:hover {
    color: var(--fcc-primary);
}

.fcc-public-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.fcc-public-button,
.fcc-primary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-weight: 750;
    line-height: 1.15;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.fcc-public-button:hover,
.fcc-primary:hover {
    transform: translateY(-2px);
}

.fcc-public-button-primary,
.fcc-primary {
    border: 0;
    background: var(--fcc-primary);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(105, 86, 219, .24);
    cursor: pointer;
}

.fcc-public-button-primary:hover,
.fcc-primary:hover {
    background: var(--fcc-primary-dark);
}

.fcc-public-button-whatsapp {
    border-color: #aee8d8;
    background: #e7fbf5;
    color: #176b58 !important;
}

.fcc-public-mobile-nav {
    position: relative;
    display: none;
    margin-left: auto;
}

.fcc-public-mobile-nav summary {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 11px;
    border: 1px solid var(--fcc-line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    list-style: none;
}

.fcc-public-mobile-nav summary::-webkit-details-marker {
    display: none;
}

.fcc-public-mobile-nav summary span {
    height: 2px;
    border-radius: 2px;
    background: var(--fcc-ink);
}

.fcc-public-mobile-nav nav {
    position: absolute;
    right: 0;
    top: 56px;
    width: min(310px, calc(100vw - 32px));
    padding: 14px;
    display: grid;
    gap: 3px;
    border: 1px solid var(--fcc-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--fcc-shadow);
}

.fcc-public-mobile-nav nav a {
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--fcc-ink);
    font-weight: 650;
}

.fcc-public-mobile-nav nav a:hover {
    background: var(--fcc-surface);
}

.fcc-self-service,
.fcc-auth-main {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: linear-gradient(145deg, #fbfcff 0%, #f3f1ff 56%, #ecfbf7 100%);
}

.fcc-self-service::before,
.fcc-auth-main::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .22;
    pointer-events: none;
    background-image: radial-gradient(#8f9ab0 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.fcc-self-service {
    padding: clamp(52px, 7vw, 92px) 20px;
    color: var(--fcc-ink);
}

.fcc-panel {
    position: relative;
    width: min(840px, 100%);
    margin: auto;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(213, 220, 234, .9);
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--fcc-shadow);
    backdrop-filter: blur(10px);
}

.fcc-panel::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 26px 0 0 26px;
    content: "";
    background: linear-gradient(var(--fcc-primary), var(--fcc-mint));
}

.fcc-panel h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.06;
}

.fcc-panel > p:not(.fcc-eyebrow),
.fcc-form > p {
    color: var(--fcc-muted);
}

.fcc-eyebrow {
    margin-bottom: 14px;
    color: var(--fcc-primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.fcc-form {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.fcc-form label,
.fcc-form legend {
    color: #26344e;
    font-weight: 700;
}

.fcc-form input,
.fcc-form textarea,
.fcc-form select,
.fcc-auth-card .form-control {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #cbd3df;
    border-radius: 10px;
    background: #fff;
    color: var(--fcc-ink);
}

.fcc-form textarea {
    min-height: 112px;
    resize: vertical;
}

.fcc-form input:focus,
.fcc-form textarea:focus,
.fcc-form select:focus,
.fcc-auth-card .form-control:focus {
    border-color: var(--fcc-primary);
    outline: 3px solid rgba(105, 86, 219, .18);
    box-shadow: none;
}

.fcc-form input[readonly] {
    background: #f1f4f9;
    color: #657189;
}

.fcc-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fcc-message {
    max-width: 720px;
    text-align: center;
}

.fcc-message .fcc-primary {
    margin-top: 14px;
}

.fcc-check {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #dff8ed;
    color: #167d5d;
    font-size: 34px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(54, 198, 164, .16);
}

.fcc-progress {
    position: relative;
    margin-bottom: 34px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.fcc-progress::before {
    position: absolute;
    z-index: 0;
    left: 8%;
    right: 8%;
    top: 18px;
    height: 2px;
    content: "";
    background: var(--fcc-line);
}

.fcc-progress span {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    margin: auto;
    display: grid;
    place-items: center;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #e9edf4;
    color: #6e798e;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(20, 33, 61, .08);
}

.fcc-progress span.active {
    background: var(--fcc-primary);
    color: #fff;
}

.fcc-radio,
.fcc-check-label {
    display: flex !important;
    align-items: center;
    gap: 9px;
    font-weight: 600 !important;
}

.fcc-radio input,
.fcc-check-label input {
    width: auto;
    min-height: 0;
    accent-color: var(--fcc-primary);
}

.fcc-form fieldset {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--fcc-line);
    border-radius: 14px;
    background: #fbfcff;
}

.fcc-info {
    padding: 17px 18px;
    border-left: 4px solid var(--fcc-primary);
    border-radius: 12px;
    background: #edf5ff;
    color: #33415c;
}

.fcc-import-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.fcc-import-guide > div {
    display: grid;
    align-content: start;
    gap: 6px;
    padding: 17px;
    border: 1px solid var(--fcc-line);
    border-radius: 14px;
    background: var(--fcc-surface);
}

.fcc-import-guide span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--fcc-mint-light);
    color: #176b58;
    font-weight: 850;
}

.fcc-import-guide small {
    color: var(--fcc-muted);
}

.fcc-download-template,
.fcc-secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid #c9c0fa;
    border-radius: 11px;
    background: #f1efff;
    color: var(--fcc-primary-dark) !important;
    font-weight: 750;
    cursor: pointer;
}

.fcc-download-template {
    justify-self: start;
}

.fcc-import-note {
    padding: 15px 17px;
    border-left: 4px solid var(--fcc-mint);
    border-radius: 11px;
    background: #effbf8;
    color: #30544c;
}

.fcc-import-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fcc-logo-preview {
    max-width: 260px;
    max-height: 180px;
    object-fit: contain;
    border: 1px solid var(--fcc-line);
    border-radius: 12px;
}

.fcc-summary {
    display: grid;
    grid-template-columns: minmax(120px, .5fr) 1.5fr;
    gap: 10px 18px;
    padding: 22px;
    border-radius: 16px;
    background: var(--fcc-surface);
}

.fcc-summary dt {
    font-weight: 800;
}

.fcc-summary dd {
    margin: 0;
    color: var(--fcc-muted);
}

.fcc-auth-main {
    padding: clamp(64px, 8vw, 112px) 0;
}

.fcc-auth-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(42px, 7vw, 96px);
}

.fcc-auth-copy {
    max-width: 590px;
}

.fcc-auth-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
}

.fcc-auth-copy > p:not(.fcc-eyebrow) {
    max-width: 560px;
    color: #48566f;
    font-size: 18px;
}

.fcc-auth-benefits {
    margin-top: 30px;
    display: grid;
    gap: 11px;
    color: #33415b;
    font-weight: 650;
}

.fcc-auth-benefits span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fcc-auth-benefits i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #dff8ed;
    color: #167d5d;
    font-style: normal;
}

.fcc-auth-card {
    width: 100%;
    max-width: 500px;
    justify-self: end;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(213, 220, 234, .9);
    border-radius: 24px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--fcc-shadow);
}

.fcc-auth-card-heading {
    margin-bottom: 28px;
    padding-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--fcc-line);
}

.fcc-auth-card-heading strong,
.fcc-auth-card-heading small {
    display: block;
}

.fcc-auth-card-heading strong {
    font-size: 20px;
}

.fcc-auth-card-heading small {
    color: var(--fcc-muted);
}

.fcc-auth-lock {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    background: var(--fcc-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.fcc-auth-card .oe_signup_form,
.fcc-auth-card .oe_reset_password_form,
.fcc-auth-card .oe_login_form {
    width: 100%;
    max-width: none;
}

.fcc-auth-card .form-label,
.fcc-auth-card .col-form-label {
    color: #26344e;
    font-weight: 700;
}

.fcc-auth-card .input-group .btn {
    border-color: #cbd3df !important;
    border-radius: 0 10px 10px 0;
    background: #fff;
}

.fcc-auth-card .btn-primary {
    min-height: 48px;
    border: 0;
    border-radius: 11px;
    background: var(--fcc-primary);
    font-weight: 750;
    box-shadow: 0 12px 28px rgba(105, 86, 219, .24);
}

.fcc-auth-card .btn-primary:hover {
    background: var(--fcc-primary-dark);
}

.fcc-auth-card .btn-link {
    color: var(--fcc-primary);
}

.fcc-auth-card .alert-danger,
.fcc-panel .alert-danger {
    border-color: #f1b8bf;
    border-radius: 12px;
    background: #fff1f2;
    color: #8f2431;
}

/* Shared authentication experience for the commercial and customer DBs. */
.fcc-login-body,
.fcc-login-body #wrapwrap,
.fcc-login-body #wrapwrap > main {
    min-height: 100%;
}

.fcc-login-body {
    margin: 0;
    background: #f7f8fc;
}

.fcc-login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    color: var(--fcc-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fcc-login-shell,
.fcc-login-shell * {
    box-sizing: border-box;
}

.fcc-login-shell :focus-visible {
    outline: 3px solid #f5b84b;
    outline-offset: 3px;
}

.fcc-login-header {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(223, 229, 239, .9);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(20, 33, 61, .05);
    backdrop-filter: blur(16px);
}

.fcc-login-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.fcc-login-help {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--fcc-muted);
    font-size: 13px;
}

.fcc-login-help a {
    min-height: 42px;
    padding: 9px 15px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #aee8d8;
    border-radius: 10px;
    background: #e7fbf5;
    color: #176b58;
    font-weight: 750;
    text-decoration: none;
}

.fcc-login-help a:hover {
    background: #d9f7ee;
}

.fcc-login-main {
    position: relative;
    min-height: 660px;
    padding: clamp(58px, 7vw, 96px) 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #fbfcff 0%, #f3f1ff 56%, #ecfbf7 100%);
}

.fcc-login-main::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .22;
    pointer-events: none;
    background-image: radial-gradient(#8f9ab0 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.fcc-login-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.fcc-login-glow-one {
    width: 420px;
    height: 420px;
    top: -240px;
    right: 7%;
    background: rgba(105, 86, 219, .13);
}

.fcc-login-glow-two {
    width: 280px;
    height: 280px;
    left: -150px;
    bottom: -120px;
    background: rgba(54, 198, 164, .14);
}

.fcc-login-main .fcc-auth-copy h1 span {
    color: var(--fcc-primary);
}

.fcc-login-main .fcc-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fcc-login-main .fcc-eyebrow > span {
    width: 22px;
    height: 2px;
    background: currentColor;
}

.fcc-login-card {
    position: relative;
    overflow: hidden;
}

.fcc-login-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--fcc-primary), var(--fcc-mint));
}

.fcc-login-card .o_database_list {
    max-width: none !important;
}

.fcc-login-card .oe_login_buttons {
    gap: 3px;
}

.fcc-login-security-note {
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--fcc-line);
    color: #6d788c;
    font-size: 12px;
    text-align: center;
}

.fcc-login-security-note i {
    margin-right: 5px;
    color: #167d5d;
}

.fcc-login-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #0d172b;
    color: #fff;
}

.fcc-login-footer-inner {
    min-height: 116px;
    padding-block: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.fcc-login-footer-inner > div,
.fcc-login-footer address {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fcc-login-footer strong {
    font-size: 13px;
    letter-spacing: .06em;
}

.fcc-login-footer-inner > div > span,
.fcc-login-footer address span,
.fcc-login-footer address a {
    color: #aeb8ca;
    font-size: 12px;
}

.fcc-login-footer address {
    margin: 0;
    align-items: flex-end;
    font-style: normal;
}

.fcc-login-footer address a {
    text-decoration: none;
}

.fcc-login-footer address a:hover {
    color: var(--fcc-mint-light);
}

.fcc-error-page > .container {
    position: relative;
    width: min(840px, 100%);
    padding: 32px clamp(28px, 5vw, 56px);
    border: 1px solid var(--fcc-line);
    border-radius: 24px 24px 0 0;
    background: #fff;
}

.fcc-error-page > .container + .container,
.fcc-error-page > .container + .card,
.fcc-error-page > .card {
    position: relative;
    width: min(840px, 100%);
    margin-inline: auto;
}

.fcc-error-page h1 {
    color: var(--fcc-ink);
    font-size: clamp(36px, 5vw, 52px);
}

.fcc-public-footer {
    padding: 70px 0 22px;
    background: #0d172b;
    color: #fff;
}

.fcc-public-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 45px;
}

.fcc-customer-user,
.fcc-mobile-user {
    color: #35425b;
    font-size: 13px;
    font-weight: 750;
}

.fcc-customer-user {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fcc-mobile-user {
    padding: 8px 12px;
    border-bottom: 1px solid var(--fcc-line);
}

.fcc-public-brand-light,
.fcc-public-brand-light .fcc-public-brand-text {
    color: #fff !important;
}

.fcc-public-footer-brand p {
    max-width: 410px;
    margin-top: 20px;
    color: #9da9bd;
    font-size: 14px;
}

.fcc-public-footer h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fcc-public-footer nav,
.fcc-public-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.fcc-public-footer nav a,
.fcc-public-footer-contact a,
.fcc-public-footer-contact span {
    color: #aeb8ca;
    font-size: 13px;
}

.fcc-public-footer a:hover {
    color: var(--fcc-mint-light) !important;
}

.fcc-public-footer-bottom {
    margin-top: 50px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #7f8ba1;
    font-size: 11px;
}

.fcc-usage {
    display: grid;
    gap: 8px;
    padding: 24px;
    border-radius: 18px;
    background: #f4f2ff;
}

.fcc-usage strong {
    font-size: 30px;
}

.fcc-usage progress {
    width: 100%;
    height: 16px;
}

.fcc-grid-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.fcc-plan-card {
    padding: 22px;
    border: 1px solid var(--fcc-line);
    border-radius: 18px;
}

.fcc-plan-card.current {
    border: 2px solid var(--fcc-primary);
}

.fcc-price {
    font-weight: 800;
}

@media (max-width: 1000px) {
    .fcc-public-nav {
        gap: 15px;
    }

    .fcc-public-nav a {
        font-size: 12px;
    }

    .fcc-public-button-whatsapp {
        display: none;
    }

    .fcc-customer-user {
        display: none;
    }

    .fcc-auth-grid {
        grid-template-columns: .85fr 1.15fr;
        gap: 38px;
    }

    .fcc-grid-plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px) {
    .fcc-public-nav,
    .fcc-public-actions {
        display: none;
    }

    .fcc-public-mobile-nav {
        display: block;
    }

    .fcc-auth-grid {
        grid-template-columns: 1fr;
    }

    .fcc-auth-copy {
        max-width: 680px;
        text-align: center;
    }

    .fcc-auth-copy > p:not(.fcc-eyebrow) {
        margin-inline: auto;
    }

    .fcc-auth-benefits {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .fcc-auth-card {
        max-width: 620px;
        justify-self: center;
    }

    .fcc-public-footer-grid {
        grid-template-columns: 1.5fr 1fr;
    }

    .fcc-public-footer-contact {
        grid-column: 1 / -1;
    }

    .fcc-login-main {
        min-height: auto;
    }
}

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

    .fcc-public-header-inner {
        min-height: 68px;
    }

    .fcc-public-brand-text {
        font-size: 14px;
    }

    .fcc-self-service,
    .fcc-auth-main {
        padding-block: 42px;
    }

    .fcc-progress {
        gap: 2px;
    }

    .fcc-progress::before {
        top: 13px;
    }

    .fcc-progress span {
        width: 28px;
        height: 28px;
        border-width: 3px;
        font-size: 10px;
    }

    .fcc-grid-2,
    .fcc-grid-plans,
    .fcc-import-guide,
    .fcc-public-footer-grid {
        grid-template-columns: 1fr;
    }

    .fcc-panel,
    .fcc-auth-card {
        border-radius: 18px;
    }

    .fcc-panel::before {
        width: 4px;
        border-radius: 18px 0 0 18px;
    }

    .fcc-auth-copy h1 {
        font-size: clamp(36px, 12vw, 50px);
    }

    .fcc-auth-benefits {
        display: grid;
        justify-content: start;
        text-align: left;
    }

    .fcc-summary {
        grid-template-columns: 1fr;
    }

    .fcc-summary dt {
        margin-top: 8px;
    }

    .fcc-public-footer-contact {
        grid-column: auto;
    }

    .fcc-public-footer-bottom {
        flex-direction: column;
    }

    .fcc-login-header-inner {
        min-height: 68px;
    }

    .fcc-login-help > span {
        display: none;
    }

    .fcc-login-help a {
        min-height: 40px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .fcc-login-main {
        padding-block: 38px;
    }

    .fcc-login-footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .fcc-login-footer address {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fcc-public-shell *,
    .fcc-public-shell *::before,
    .fcc-public-shell *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
