@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Syne:wght@400..800&display=swap');

/* Color Variables */
*:root {
    --wpafn-color-primary: rgb(72, 157, 255);
    --wpafn-color-primary-hover: rgb(38, 121, 216);
    --wpafn-color-background: #000;
    --wpafn-color-surface: #0a0a0b;
    --wpafn-color-border: rgba(255, 255, 255, .12);
    --wpafn-color-text-primary: #fff;
    --wpafn-color-text-secondary: #94a3b8;
    --wpafn-color-success: rgb(16, 185, 129);
    --wpafn-color-success-bg: rgba(16, 185, 129, .12);
    --wpafn-color-error: rgb(239, 68, 68);
    --wpafn-color-error-bg: rgba(239, 68, 68, .12);
}

.wpafn-auth-page * {
    box-sizing: border-box;
}

.wpafn-auth-page {
    /* width: 100%; */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 40px 16px;
    font-family: 'Basis Grotesque PRO', 'Outfit', sans-serif;
}

body.wpafn-is-loading {
    overflow: hidden;
}

.wpafn-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at top, rgba(72, 157, 255, .14), transparent 36%),
        rgba(2, 6, 23, .84);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
    backdrop-filter: blur(10px);
}

.wpafn-page-loader.is-visible {
    opacity: 1;
    visibility: visible;
}

.wpafn-page-loader__inner {
    position: relative;
    width: min(100%, 280px);
    min-height: 240px;
    display: grid;
    place-items: center;
    gap: 16px;
    padding: 32px 24px;
    /* border: 1px solid rgba(255, 255, 255, .12); */
    /* border-radius: 24px; */
    /* background: linear-gradient(180deg, rgba(15, 23, 42, .96) 0%, rgba(2, 6, 23, .96) 100%); */
    /* box-shadow: 0 24px 80px rgba(0, 0, 0, .45); */
    text-align: center;
}

.wpafn-page-loader__inner strong {
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 600;
}

.wpafn-page-loader__ring {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    border: 3px solid rgba(148, 163, 184, .22);
    border-top-color: rgba(72, 157, 255, 1);
    animation: wpafn-loader-spin 1s linear infinite;
}

.wpafn-page-loader__dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(72, 157, 255, 1) 0%, #1f6fff 100%);
    box-shadow: 0 0 24px rgba(72, 157, 255, .45);
    animation: wpafn-loader-pulse 1.2s ease-in-out infinite;
}

.wpafn-page-loader__dot--one {
    top: 90px;
    right: 106px;
}

.wpafn-page-loader__dot--two {
    bottom: 86px;
    left: 110px;
    animation-delay: .22s;
}

@keyframes wpafn-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes wpafn-loader-pulse {

    0%,
    100% {
        transform: scale(.75);
        opacity: .6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.wpafn-auth-swal {
    border-radius: 8px;
    font-family: 'Basis Grotesque PRO', 'Outfit', sans-serif;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(24, 24, 27, .98) 0%, rgba(10, 10, 11, .98) 100%);
    color: #e2e8f0;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}

.wpafn-auth-swal .swal2-title {
    color: #fff;
    font-family: 'Basis Grotesque PRO', 'Syne', sans-serif;
}

.wpafn-auth-swal .swal2-html-container {
    color: #94a3b8;
}

.wpafn-auth-swal .swal2-icon.swal2-question {
    border-color: rgba(72, 157, 255, .65);
    color: rgb(72, 157, 255);
}

.wpafn-auth-swal .swal2-icon.swal2-success {
    border-color: rgba(16, 185, 129, .65);
    color: #6ee7b7;
}

.wpafn-auth-swal .swal2-icon.swal2-error {
    border-color: rgba(239, 68, 68, .65);
    color: #fca5a5;
}

.wpafn-auth-swal-actions {
    gap: 10px;
}

.wpafn-auth-swal-button {
    min-width: 132px;
    height: 48px;
    border: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-family: 'Basis Grotesque PRO Mono', 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: .18s ease;
}

.wpafn-auth-swal-button--confirm {
    background: rgb(72, 157, 255);
    color: #fff;
}

.wpafn-auth-swal-button--confirm:hover {
    background: rgb(38, 121, 216);
}

.wpafn-auth-swal-button--cancel {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: #e2e8f0;
}

.wpafn-auth-swal-button--cancel:hover {
    background: rgba(255, 255, 255, .08);
}

.wpafn-auth-page h1,
.wpafn-auth-page h2,
.wpafn-auth-page h3,
.wpafn-auth-page h4,
.wpafn-auth-page h5,
.wpafn-auth-page h6 {
    font-family: 'Basis Grotesque PRO', 'Syne', sans-serif;
    margin: 0;
}

.wpafn-auth-page p {
    margin: 0;
}

.wpafn-auth-shell {
    width: 100%;
    /* min-height: calc(100vh - 80px); */
    /* margin: 0 auto; */
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
    max-width: 672px;

}

.wpafn-auth-shell--small {
    max-width: 448px;
}

.wpafn-auth-shell--profile {
    max-width: 760px;
}

.wpafn-auth-heading {
    text-align: center;
    margin-bottom: 32px;
}

.wpafn-auth-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(72, 157, 255, .3);
    background: rgba(72, 157, 255, .1);
    color: rgba(72, 157, 255, 1);
    border-radius: 999px;
    padding: 8px 16px;
    font-family: "Basis Grotesque PRO Mono", Courier, monospace;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    margin-bottom: 16px;
}

.wpafn-auth-pill span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 999px;
    background: rgba(72, 157, 255, 1);
    box-shadow: 0 0 12px rgba(72, 157, 255, .8);
}

.wpafn-auth-heading h1 {
    color: #fff;
    font-size: clamp(44px, 8vw, 60px);
    line-height: .95;
    font-weight: 700;
    letter-spacing: -1.5px;
    font-family: 'Basis Grotesque PRO', 'Syne', sans-serif;
    line-height: clamp(44px, 8vw, 60px);
    margin-bottom: 16px;
}

.wpafn-auth-heading p {
    color: #94a3b8;
    font-size: 18px;
    line-height: 28px;

}

.wpafn-auth-card {
    border: 1px solid oklab(0.274 0.00165715 -0.00576662 / 0.5);
    border-radius: 16px;
    background-image: linear-gradient(oklab(0.21 0.00164224 -0.00577088 / 0.9) 0%, oklab(0.141 0.00136333 -0.00481054 / 0.9) 100%);
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 4px 6px -1px, rgba(0, 0, 0, 0.22) 0px 2px 4px -1px;
}

.wpafn-auth-centered {
    text-align: center;
}

.wpafn-auth-centered h2 {
    margin: 0;
    font-size: 28px;
    color: #fff;
    font-family: 'Syne', sans-serif;
}

.wpafn-auth-centered p {
    color: #94a3b8;
    margin: 12px 0 22px;
}

.wpafn-auth-form {
    display: grid;
    /* max-width: 590px; */
}

.wpafn-auth-grid {
    display: grid;
    gap: 16px;
}

.wpafn-auth-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wpafn-auth-field {
    display: grid;
    margin-bottom: 24px;
}

.wpafn-auth-field label,
.wpafn-auth-label-row label {
    color: #99a1af;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.wpafn-auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wpafn-auth-label-row a,
.wpafn-auth-footer-text a {
    color: rgba(72, 157, 255, 1);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.wpafn-auth-footer-text a {
    color: rgb(38, 121, 216)
}

.wpafn-auth-label-row a:hover,
.wpafn-auth-footer-text a:hover {
    color: rgb(72, 157, 255);
}

.wpafn-auth-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #4a5565 !important;
}

.wpafn-auth-field input:not([type="radio"]):not([type="checkbox"]),
.wpafn-auth-field select {
    width: 100%;
    height: 50px;
    border-radius: 0px;
    border: 1px solid oklch(0.274 0.006 286.033);
    background: #0a0a0b;
    color: #fff;
    outline: none;
    padding: 12px 16px;
    font-size: 16px;
    transition: .18s ease;

}

.wpafn-auth-password-wrap {
    position: relative;
    width: 100%;
}

.wpafn-auth-password-wrap input {
    padding-right: 52px !important;
}

.wpafn-auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: translateY(-50%);
    cursor: pointer;
    transition: .18s ease;
}

.wpafn-auth-password-toggle:hover,
.wpafn-auth-password-toggle.is-visible {
    color: rgb(72, 157, 255);
    background: rgba(72, 157, 255, .10);
}

.wpafn-auth-password-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.wpafn-auth-password-toggle .wpafn-auth-eye--closed,
.wpafn-auth-password-toggle.is-visible .wpafn-auth-eye--open {
    display: none;
}

.wpafn-auth-password-toggle.is-visible .wpafn-auth-eye--closed {
    display: block;
}

.wpafn-auth-password-strength {
    display: grid;
    gap: 7px;
    margin-bottom: 24px;
}

.wpafn-auth-password-strength__bar {
    display: block;
    width: 100%;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, .18);
}

.wpafn-auth-password-strength__fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #64748b;
    transition: width .2s ease, background-color .2s ease;
}

.wpafn-auth-password-strength__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.3;
}

.wpafn-auth-password-strength__label strong {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 700;
}

.wpafn-auth-password-strength__suggestions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 12px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}

.wpafn-auth-password-strength__suggestions li {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.35;
}

.wpafn-auth-password-strength__suggestions li span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    flex: 0 0 auto;
    background: rgba(148, 163, 184, .5);
}

.wpafn-auth-password-strength__suggestions li.is-met {
    color: #cbd5e1;
}

.wpafn-auth-password-strength__suggestions li.is-met span {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, .34);
}

.wpafn-auth-password-strength.is-weak .wpafn-auth-password-strength__fill {
    background: #ef4444;
}

.wpafn-auth-password-strength.is-fair .wpafn-auth-password-strength__fill {
    background: #f59e0b;
}

.wpafn-auth-password-strength.is-good .wpafn-auth-password-strength__fill {
    background: #38bdf8;
}

.wpafn-auth-password-strength.is-strong .wpafn-auth-password-strength__fill {
    background: #22c55e;
}

.wpafn-auth-password-strength.is-weak .wpafn-auth-password-strength__label strong {
    color: #fca5a5;
}

.wpafn-auth-password-strength.is-fair .wpafn-auth-password-strength__label strong {
    color: #fbbf24;
}

.wpafn-auth-password-strength.is-good .wpafn-auth-password-strength__label strong {
    color: #7dd3fc;
}

.wpafn-auth-password-strength.is-strong .wpafn-auth-password-strength__label strong {
    color: #86efac;
}

.wpafn-auth-choice.wpafn-auth-choice--center,
.wpafn-auth-choice.wpafn-auth-choice--row {
    margin: 0;
}

.wpafn-auth-field select option {
    background: #020617;
    color: #fff;
}

.wpafn-auth-options.wpafn-auth-options--user-type svg {
    width: 24px;
    height: 24px;
    color: oklch(0.707 0.022 261.325);
    margin-bottom: 8px;
}

.wpafn-auth-field input::placeholder {
    color: #4a5565;
}

.wpafn-auth-field input:focus,
.wpafn-auth-field select:focus {
    border: 1px solid var(--wpafn-color-primary) !important;
}

.wpafn-auth-field:focus-within label {
    color: var(--wpafn-color-primary);
}

.wpafn-auth-options {
    display: grid;
    gap: 12px;
}

.wpafn-auth-options--user-type {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wpafn-auth-options--budget {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wpafn-auth-options--calculator {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wpafn-auth-options--calculator strong {
    font-weight: 500;
    color: oklch(0.872 0.01 258.338);
}

.wpafn-auth-choice {
    display: block;
    cursor: pointer;
}


.wpafn-auth-choice-icon {
    border-radius: 10px;
    background-color: #171718;
    padding: 12px;
    line-height: 0;
    margin-bottom: 12px;
}

span .wpafn-auth-choice-icon svg {
    height: 28px;
    width: 28px;
    color: #99a1af;
}

.wpafn-auth-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wpafn-auth-choice>span {
    min-height: 88px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 10px;
    background: rgba(0, 0, 0, .40);
    transition: .18s ease;
    color: #fff;
}

.wpafn-auth-choice:hover>span {
    border-color: rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .035);
}

.wpafn-auth-choice input:checked+span {
    border-color: rgba(72, 157, 255, 1);
    background: rgba(72, 157, 255, .10);
    box-shadow: 0 0 0 1px rgba(72, 157, 255, .35), 0 0 24px rgba(72, 157, 255, .12);
}

.wpafn-auth-choice--center>span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    height: 100%;
}

.wpafn-auth-choice--center b {
    color: #e2e8f0;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 600;
}

.wpafn-auth-choice-icon2 {
    padding: 8px;
    background: oklab(0.274 0.00165715 -0.00576662 / 0.5);
    border-radius: 10px;
    line-height: 0;
}

.wpafn-auth-choice-icon2 svg {
    width: 20px !important;
    height: 20px !important;
    color: oklch(0.707 0.022 261.325);
}

.wpafn-auth-choice--center em {
    color: oklch(0.707 0.022 261.325);
    font-size: 14px;
    line-height: 20px;
    font-style: normal;
    font-weight: 500;
}

.wpafn-auth-choice--center small {
    display: block;
    color: oklch(0.551 0.027 264.364);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.wpafn-auth-choice--row>span {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
}

.wpafn-auth-choice--row b {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: #e2e8f0;
    font-size: 18px;
}

.wpafn-auth-choice--row em {
    font-style: normal;
    font-weight: 500;
    color: #d1d5dc;
}

.wpafn-auth-choice--row strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.wpafn-auth-choice--row small {
    display: block;
    color: #94a3b8;
    font-size: 12px;
}

.wpafn-auth-checks {
    display: grid;
    gap: 12px;
    padding-top: 2px;
    margin-bottom: 24px;
}

.wpafn-auth-check {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.55;
    cursor: pointer;
}

.wpafn-auth-check input {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

[type="button"]:focus,
[type="submit"]:focus,
button:focus {
    background-color: var(--wpafn-color-primary);
    color: #fff;
}

.wpafn-auth-button {
    width: 100% !important;
    height: 56px;
    border: 0 !important;
    border-radius: 0px !important;
    /* background: linear-gradient(90deg, #18d4ff 0%, #1f6fff 100%); */
    background: rgb(72, 157, 255) !important;
    color: #fff !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    font-family: 'Basis Grotesque PRO Mono', 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    /* box-shadow: 0 16px 40px rgba(28, 127, 255, .25); */
    transition: .18s ease;
}

.wpafn-auth-button:hover {
    background-color: rgb(38, 121, 216) !important;
    /* transform: scale(1.02);
    filter: brightness(1.04);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, color(srgb -0.230178 0.721872 0.857338 / 0.255) 0px 10px 15px -3px, color(srgb -0.230178 0.721872 0.857338 / 0.255) 0px 4px 6px -4px; */
}

.wpafn-auth-link-button {
    height: 56px;
    border: 1px solid rgba(255, 255, 255, .12);
    /* border-radius: 10px; */
    color: #e2e8f0 !important;
    background: rgba(255, 255, 255, .04);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    font-family: 'Basis Grotesque PRO Mono', 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
}

.wpafn-account-menu {
    position: relative;
    display: inline-block;
    max-width: 100%;
    font-family: 'Basis Grotesque PRO', 'Outfit', sans-serif;
    color: #fff;
}

.wpafn-account-menu *,
.wpafn-account-menu *::before,
.wpafn-account-menu *::after {
    box-sizing: border-box;
}

.wpafn-account-menu__button {
    max-width: min(100%, 260px);
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 0;
    background: rgba(255, 255, 255, .04) !important;
    color: #e2e8f0 !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    font: inherit;
    cursor: pointer;
    transition: .18s ease;
}

.wpafn-account-menu__button:hover,
.wpafn-account-menu__login:hover,
.wpafn-account-menu.is-open .wpafn-account-menu__button {
    border-color: rgba(72, 157, 255, .55);
    background: rgba(72, 157, 255, .10);
    color: #fff;
}

.wpafn-account-menu__login {
    text-decoration: none !important;
}

.wpafn-account-menu__icon,
.wpafn-account-menu__chevron {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.wpafn-account-menu__icon svg,
.wpafn-account-menu__chevron svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.wpafn-account-menu__name {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Basis Grotesque PRO Mono', 'Outfit', sans-serif;
}

.wpafn-account-menu__chevron {
    color: #94a3b8;
    transition: transform .18s ease;
}

.wpafn-account-menu.is-open .wpafn-account-menu__chevron {
    transform: rotate(180deg);
}

.wpafn-account-menu__dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 30;
    width: max-content;
    min-width: 140px;
    max-width: min(280px, calc(100vw - 32px));
    padding: 0px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(24, 24, 27, .98) 0%, rgba(10, 10, 11, .98) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.wpafn-account-menu__item {
    min-height: 42px;
    color: #e2e8f0 !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: .18s ease;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.wpafn-account-menu__item:last-child {
    border-bottom: 0;
}

@media (max-width: 480px) {
    .wpafn-account-menu {
        width: 100%;
    }

    .wpafn-account-menu__button {
        width: 100%;
        max-width: 100%;
        min-height: 50px;
        gap: 8px;
        padding: 0 12px;
    }

    .wpafn-account-menu__name {
        max-width: none;
        min-width: 0;
        flex: 1 1 auto;
        text-align: left;
        font-size: 14px;
    }

    .wpafn-account-menu__dropdown {
        left: 0;
        right: 0;
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .wpafn-account-menu__item {
        min-height: 46px;
        padding: 0 14px;
    }
}

.wpafn-account-menu__item:hover {
    background: rgba(72, 157, 255, .10);
    color: #fff !important;
}

.wpafn-auth-actions-row {
    display: flex;
    gap: 12px;
}

.wpafn-auth-microcopy {
    margin-top: 20px !important;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.wpafn-auth-footer-text {
    margin-top: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.wpafn-auth-notice {
    margin-bottom: 20px;
    border-radius: 16px;
    padding: 13px 14px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid rgba(255, 255, 255, .10);
}

.wpafn-auth-notice--success {
    background: rgba(16, 185, 129, .12);
    border-color: rgba(16, 185, 129, .28);
    color: #6ee7b7;
}

.wpafn-auth-notice--error {
    background: rgba(239, 68, 68, .12);
    border-color: rgba(239, 68, 68, .28);
    color: #fca5a5;
}

.wpafn-auth-business-fields.wpafn-auth-is-hidden {
    display: none;
}

.wpafn-auth-page--profile .wpafn-auth-card {
    /* max-width: 760px; */
    margin: 0 auto;
}

@media (max-width: 720px) {
    .wpafn-auth-page {
        padding: 28px 14px;
    }

    .wpafn-auth-shell {
        min-height: calc(100vh - 56px);
    }

    .wpafn-auth-card {
        padding: 22px;
        border-radius: 22px;
    }

    .wpafn-auth-grid--2,
    .wpafn-auth-options--user-type,

    .wpafn-auth-options--calculator,
    .wpafn-auth-actions-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wpafn-auth-options--budget {
        grid-template-columns: 1fr;
    }

    .wpafn-auth-heading h1 {
        font-size: 44px;
    }
}