:root {
    --brand-primary: #d72f67;
    --brand-secondary: #8e1f46;
    --brand-surface: #fff8fb;
    --ink: #21151a;
    --muted: #74666d;
    --line: #eadde3;
    --panel: #ffffff;
    --soft: #f7f3f5;
    --ok: #0f8a5f;
    --warn: #b45309;
    --danger: #b42318;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--brand-surface), #ffffff 340px);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.auth-page, .public-page {
    min-height: 100vh;
}

.auth-shell, .public-shell {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 28px 18px 48px;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.auth-panel, .booking-card, .panel, .kpi-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(55, 35, 45, .08);
}

.auth-panel {
    width: min(440px, 100%);
    padding: 28px;
}

.brand-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-line strong { display: block; font-weight: 800; }
.brand-line span, .muted-pill, .topbar p, .panel-head p, .section-title p, .data-row span, .appointment-main span, .appointment-main small, .kpi-card small { color: var(--muted); }

.brand-dot {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--brand-primary);
    color: #fff;
    font-weight: 800;
}

.brand-dot img { width: 100%; height: 100%; object-fit: cover; }

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 10px; font-size: clamp(2rem, 5vw, 3.7rem); line-height: 1.02; letter-spacing: 0; }
h2 { margin-bottom: 4px; font-size: 1.35rem; }
h3 { margin: 0 0 14px; font-size: 1rem; }
p { line-height: 1.6; }

.stack-form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
}

input, select, textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
}

textarea { resize: vertical; }

.check-line {
    grid-template-columns: auto 1fr;
    align-items: center;
    font-weight: 600;
}

.check-line input {
    width: 18px;
    min-height: 18px;
}

.primary-btn, .secondary-btn, .ghost-btn, .logout-btn, .state-btn {
    border: 0;
    border-radius: 16px;
    min-height: 44px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.primary-btn {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
}

.secondary-btn {
    background: var(--soft);
    color: var(--ink);
    border: 1px solid var(--line);
}

.ghost-btn {
    margin-top: 12px;
    width: 100%;
    border: 1px solid var(--line);
    color: var(--brand-secondary);
    background: #fff;
}

.wide { width: 100%; }

.alert {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff3f0;
    color: var(--danger);
    border: 1px solid #ffd6cc;
    font-weight: 700;
}

.alert.success {
    background: #effaf5;
    color: var(--ok);
    border-color: #c8efdd;
}

.app-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 22px;
    border-right: 1px solid var(--line);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.nav-link {
    border: 0;
    background: transparent;
    color: var(--muted);
    text-align: left;
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 800;
}

.nav-link.active {
    background: var(--brand-primary);
    color: #fff;
}

.logout-btn {
    width: 100%;
    margin-top: auto;
    background: #fff;
    color: var(--danger);
    border: 1px solid var(--line);
}

.main-content {
    width: min(1220px, 100%);
    padding: 28px;
}

.topbar, .section-title, .panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--brand-secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
}

.page-section { display: none; }
.page-section.active { display: grid; gap: 20px; }

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.kpi-card {
    padding: 18px;
    min-height: 124px;
}

.kpi-card span { display: block; color: var(--muted); font-weight: 800; }
.kpi-card strong { display: block; margin: 10px 0 4px; font-size: 1.8rem; }
.kpi-card.highlight { background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); color: #fff; }
.kpi-card.highlight span, .kpi-card.highlight small { color: rgba(255,255,255,.82); }

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.panel {
    padding: 18px;
}

.list {
    display: grid;
    gap: 10px;
}

.appointment-row, .data-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.time-box {
    min-width: 64px;
    padding: 10px;
    border-radius: 14px;
    background: var(--brand-surface);
    text-align: center;
}

.time-box strong, .time-box span { display: block; }
.time-box span { color: var(--muted); font-size: .82rem; }
.appointment-main { min-width: 0; }
.appointment-main strong, .appointment-main span, .appointment-main small { display: block; overflow-wrap: anywhere; }

.status-form select {
    min-width: 138px;
    border-radius: 999px;
}

.filters, .form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

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

.search-box {
    margin-bottom: 12px;
}

.row-meta {
    text-align: right;
}

.row-meta span, .row-meta small { display: block; }

.state-btn {
    min-width: 92px;
    background: #fff2f2;
    color: var(--danger);
    border: 1px solid #ffd0d0;
}

.state-btn.on {
    background: #ebfbf4;
    color: var(--ok);
    border-color: #c4eed9;
}

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

.compact-form {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 14px;
}

.resource-list {
    display: grid;
    gap: 10px;
}

.resource-edit {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) 90px auto auto;
    gap: 8px;
    align-items: center;
}

.public-hero {
    padding: 10px 0 22px;
}

.public-hero h1 {
    margin-top: 34px;
}

.booking-card {
    padding: 22px;
}

.step-block {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
}

.step-number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--brand-primary);
    color: #fff;
    font-weight: 900;
}

.slot-panel {
    padding: 14px;
    border-radius: 20px;
    background: var(--soft);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}

.slot-btn {
    border: 1px solid var(--line);
    border-radius: 999px;
    min-height: 42px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
}

.slot-btn.active {
    background: var(--brand-primary);
    color: #fff;
}

.form-message {
    color: var(--muted);
    min-height: 20px;
    font-weight: 700;
}

.form-message.error { color: var(--danger); }
.form-message.success { color: var(--ok); }
.empty { color: var(--muted); padding: 12px; }
.bottom-nav { display: none; }

@media (max-width: 1050px) {
    .kpi-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .settings-grid, .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    body { padding-bottom: 72px; }
    .app-shell { display: block; }
    .sidebar { display: none; }
    .main-content { padding: 18px; }
    .topbar { display: grid; }
    .topbar .primary-btn { width: 100%; }
    .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .filters, .form-grid { grid-template-columns: 1fr; }
    .appointment-row, .data-row {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .status-form select { width: 100%; }
    .row-meta { text-align: left; }
    .resource-edit { grid-template-columns: 1fr; }
    .auth-panel, .booking-card, .panel, .kpi-card { border-radius: 20px; }
    .bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 20;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
        padding: 8px;
        background: rgba(255, 255, 255, .96);
        border-top: 1px solid var(--line);
    }
    .bottom-nav .nav-link {
        text-align: center;
        font-size: .78rem;
        padding: 10px 4px;
    }
}

@media (max-width: 420px) {
    .kpi-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2rem; }
    .auth-shell, .public-shell { padding-left: 12px; padding-right: 12px; }
}


/* =========================================================
   NEWAFY AUTH
   ========================================================= */

body.nf-auth-page {
    --nf-bg: #07111f;
    --nf-bg-deep: #040a13;
    --nf-card: #ffffff;
    --nf-navy: #101b4c;
    --nf-blue: #18326d;
    --nf-cyan: #39d4e5;
    --nf-cyan-soft: #8be8ef;
    --nf-text: #0e1629;
    --nf-muted: #68748a;
    --nf-line: #e6eaf0;

    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    position: relative;

    color: #fff;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(42, 196, 221, .12),
            transparent 27rem
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(47, 97, 195, .18),
            transparent 32rem
        ),
        linear-gradient(
            135deg,
            var(--nf-bg-deep),
            var(--nf-bg)
        );

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


/* BACKGROUND */

.nf-auth-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .07;

    background-image:
        linear-gradient(
            rgba(255,255,255,.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.18) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.6),
            transparent 90%
        );
}

.nf-auth-glow {
    position: fixed;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(90px);
}

.nf-auth-glow-1 {
    width: 420px;
    height: 420px;

    top: -180px;
    right: 18%;

    background: rgba(40, 216, 227, .13);
}

.nf-auth-glow-2 {
    width: 500px;
    height: 500px;

    bottom: -280px;
    left: -120px;

    background: rgba(49, 83, 190, .20);
}


/* HEADER */

.nf-auth-header {
    width: min(1380px, calc(100% - 64px));
    height: 96px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 3;
}

.nf-auth-logo-box {
    height: 48px;

    display: inline-flex;
    align-items: center;

    padding: 7px 14px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .96);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, .18);
}

.nf-auth-logo {
    display: block;

    width: auto;
    height: 32px;
}

.nf-auth-header-badge {
    padding: 8px 13px;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.11);

    background: rgba(255,255,255,.055);

    color: rgba(255,255,255,.7);

    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;

    backdrop-filter: blur(12px);
}


/* MAIN */

.nf-auth-layout {
    position: relative;
    z-index: 2;

    width: min(1280px, calc(100% - 64px));
    min-height: calc(100vh - 160px);

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(390px, 470px);

    gap: clamp(50px, 8vw, 130px);

    align-items: center;

    padding: 30px 0 70px;
}


/* LEFT */

.nf-auth-copy {
    max-width: 700px;
}

.nf-auth-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 26px;

    color: var(--nf-cyan-soft);

    font-size: .77rem;
    font-weight: 800;

    letter-spacing: .16em;
}

.nf-auth-eyebrow span {
    width: 28px;
    height: 2px;

    border-radius: 99px;

    background: linear-gradient(
        90deg,
        var(--nf-cyan),
        transparent
    );
}

.nf-auth-copy h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(3.8rem, 6.2vw, 6.8rem);
    font-weight: 690;

    line-height: .91;
    letter-spacing: -.065em;
}

.nf-auth-copy h1 strong {
    color: transparent;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            var(--nf-cyan-soft) 42%,
            var(--nf-cyan) 100%
        );

    -webkit-background-clip: text;
    background-clip: text;
}

.nf-auth-copy > p {
    max-width: 570px;

    margin: 30px 0 38px;

    color: rgba(229, 238, 249, .68);

    font-size: 1.08rem;
    line-height: 1.75;
}


/* FEATURES */

.nf-auth-features {
    display: grid;
    gap: 16px;
}

.nf-auth-feature {
    display: flex;
    align-items: center;
    gap: 14px;

    width: fit-content;

    color: #fff;
}

.nf-feature-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--nf-cyan);

    border: 1px solid rgba(72, 219, 230, .14);

    background:
        rgba(56, 199, 220, .075);
}

.nf-feature-icon svg {
    width: 20px;
    height: 20px;
}

.nf-auth-feature strong {
    display: block;

    margin-bottom: 3px;

    font-size: .92rem;
}

.nf-auth-feature span {
    display: block;

    color: rgba(255,255,255,.48);

    font-size: .78rem;
}


/* CARD */

.nf-auth-card-wrapper {
    position: relative;
}

.nf-auth-card-wrapper::before {
    content: "";

    position: absolute;

    inset: 10% -12% -8% 8%;

    background:
        linear-gradient(
            135deg,
            rgba(49, 212, 226, .25),
            rgba(29, 65, 153, .12)
        );

    filter: blur(80px);

    border-radius: 50%;

    pointer-events: none;
}

.nf-auth-card {
    position: relative;

    padding: 42px;

    border-radius: 28px;

    color: var(--nf-text);

    background:
        rgba(255, 255, 255, .985);

    border:
        1px solid rgba(255,255,255,.75);

    box-shadow:
        0 45px 100px rgba(0,0,0,.30),
        0 10px 30px rgba(0,0,0,.12);
}

.nf-auth-card-head {
    margin-bottom: 28px;
}

.nf-auth-card-kicker {
    display: block;

    margin-bottom: 9px;

    color: #187c95;

    font-size: .74rem;
    font-weight: 800;

    letter-spacing: .07em;
    text-transform: uppercase;
}

.nf-auth-card h2 {
    margin: 0 0 8px;

    color: #0c1427;

    font-size: 2rem;
    font-weight: 750;

    letter-spacing: -.04em;
}

.nf-auth-card-head p {
    margin: 0;

    color: var(--nf-muted);

    font-size: .92rem;
}

.nf-auth-mobile-brand {
    display: none;
}


/* ERROR */

.nf-auth-alert {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    padding: 12px 14px;

    border-radius: 13px;

    color: #a22929;

    background: #fff2f2;

    border: 1px solid #ffd3d3;

    font-size: .85rem;
    font-weight: 650;
}

.nf-auth-alert svg {
    width: 19px;
    height: 19px;

    flex: 0 0 19px;
}


/* FORM */

.nf-auth-form {
    display: grid;
    gap: 19px;
}

.nf-field {
    display: block;

    color: #344054;

    font-size: .82rem;
    font-weight: 650;
}

.nf-field > span {
    display: block;
    margin-bottom: 8px;
}

.nf-input-wrap {
    height: 52px;

    position: relative;

    display: flex;
    align-items: center;

    border-radius: 14px;

    border: 1px solid #dce2e9;

    background: #f9fafb;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.nf-input-wrap:focus-within {
    background: #fff;

    border-color: #62d6e2;

    box-shadow:
        0 0 0 4px rgba(58, 208, 224, .11);
}

.nf-input-wrap > svg {
    position: absolute;
    left: 16px;

    width: 19px;
    height: 19px;

    color: #98a2b3;
}

.nf-input-wrap input {
    width: 100%;
    height: 100%;

    min-height: 0;

    margin: 0;

    padding: 0 48px 0 46px;

    border: 0;
    outline: 0;

    border-radius: inherit;

    background: transparent;

    color: #111827;

    font-size: .92rem;
}

.nf-input-wrap input::placeholder {
    color: #abb3c0;
}

.nf-password-toggle {
    position: absolute;
    right: 10px;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 0;
    border-radius: 10px;

    color: #8b96a7;

    background: transparent;
}

.nf-password-toggle:hover {
    color: #1ba7bc;

    background: #eefbfc;
}

.nf-password-toggle svg {
    width: 19px;
    height: 19px;
}


/* REMEMBER */

.nf-remember {
    display: flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    cursor: pointer;

    color: #667085;

    font-size: .81rem;
    font-weight: 550;
}

.nf-remember input {
    position: absolute;
    opacity: 0;

    pointer-events: none;
}

.nf-checkbox {
    width: 18px;
    height: 18px;

    display: block;

    border-radius: 5px;

    border: 1px solid #cbd2dc;

    background: #fff;

    transition: .18s ease;
}

.nf-remember input:checked + .nf-checkbox {
    border-color: #28bdd0;

    background:
        #28bdd0;

    box-shadow:
        inset 0 0 0 4px #28bdd0;
}

.nf-remember input:checked + .nf-checkbox::after {
    content: "";

    display: block;

    width: 8px;
    height: 4px;

    margin: 5px 0 0 4px;

    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;

    transform: rotate(-45deg);
}


/* BUTTON */

.nf-login-button {
    width: 100%;
    height: 54px;

    margin-top: 3px;

    padding: 0 18px;

    border: 0;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #06101d;

    background:
        linear-gradient(
            115deg,
            #7ce9ef,
            #32cede
        );

    font-size: .9rem;
    font-weight: 800;

    box-shadow:
        0 12px 25px rgba(38, 191, 209, .23);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        filter .18s ease;
}

.nf-login-button:hover {
    transform: translateY(-2px);

    filter: brightness(1.03);

    box-shadow:
        0 17px 34px rgba(38, 191, 209, .30);
}

.nf-login-button:active {
    transform: translateY(0);
}

.nf-login-button svg {
    width: 18px;
    height: 18px;

    transition: transform .18s ease;
}

.nf-login-button:hover svg {
    transform: translateX(3px);
}


/* CREATE */

.nf-auth-separator {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;

    margin: 27px 0 17px;
}

.nf-auth-separator span {
    height: 1px;

    background: #e7ebf0;
}

.nf-auth-separator small {
    color: #98a2b3;

    font-size: .72rem;
}

.nf-create-account {
    width: 100%;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #152253;

    border: 1px solid #d9dfe8;

    background: #fff;

    font-size: .86rem;
    font-weight: 750;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.nf-create-account:hover {
    transform: translateY(-1px);

    border-color: #a9dfe5;

    background: #f6feff;
}


/* SECURITY */

.nf-auth-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin: 20px 0 0;

    color: #98a2b3;

    font-size: .7rem;
}

.nf-auth-security svg {
    width: 15px;
    height: 15px;
}


/* FOOTER */

.nf-auth-footer {
    position: relative;
    z-index: 2;

    width: min(1380px, calc(100% - 64px));

    margin: -28px auto 0;

    padding-bottom: 24px;

    color: rgba(255,255,255,.28);

    font-size: .68rem;
}


/* TABLET */

@media (max-width: 980px) {

    .nf-auth-layout {
        grid-template-columns: 1fr 420px;

        gap: 45px;
    }

    .nf-auth-copy h1 {
        font-size: clamp(3.2rem, 7vw, 5rem);
    }

    .nf-auth-feature span {
        display: none;
    }
}


/* MOBILE */

@media (max-width: 780px) {

    body.nf-auth-page {
        padding-bottom: 0;
    }

    .nf-auth-header {
        display: none;
    }

    .nf-auth-grid {
        background-size: 48px 48px;
    }

    .nf-auth-layout {
        width: 100%;
        min-height: 100vh;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 24px 16px;
    }

    .nf-auth-copy {
        display: none;
    }

    .nf-auth-card-wrapper {
        width: min(430px, 100%);
    }

    .nf-auth-card {
        width: 100%;

        padding: 32px 25px;

        border-radius: 24px;
    }

    .nf-auth-mobile-brand {
        display: inline-flex;

        height: 47px;

        margin-bottom: 26px;

        padding: 8px 12px;

        border-radius: 12px;

        background: #f4f8fb;
    }

    .nf-auth-mobile-brand img {
        width: auto;
        height: 31px;
    }

    .nf-auth-card h2 {
        font-size: 1.8rem;
    }

    .nf-auth-footer {
        display: none;
    }
}


/* SMALL MOBILE */

@media (max-width: 390px) {

    .nf-auth-layout {
        padding: 12px;
    }

    .nf-auth-card {
        padding: 27px 20px;
    }

    .nf-auth-card h2 {
        font-size: 1.65rem;
    }

    .nf-input-wrap {
        height: 50px;
    }
}
