/* ══════════════════════════════════════════════════════════════════════════════
   register.css  —  EmailFeed registration flow shared styles
   Used by: register.php · choose-plan.php · create-organisation.php
   Loaded via $page_css in each page; global.css tokens are available here.
══════════════════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════════════════════════
   1. PAGE WRAPPER
   Centres the card vertically and horizontally in the space below the nav.
══════════════════════════════════════════════════════════════════════════════ */

.auth-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-h));
    padding: 40px 20px;
}


/* ══════════════════════════════════════════════════════════════════════════════
   2. CARD
   Base card used on all three steps.
   --wide modifier expands for the plan selection step (three columns).
══════════════════════════════════════════════════════════════════════════════ */

.auth-card {
    background: var(--bg-surface);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    padding: 44px 44px 36px;
    width: 100%;
    max-width: 480px;
    animation: cardIn 0.3s ease both;
}

.auth-card--wide {
    max-width: 860px;
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════════════════════════
   3. CARD INNER ELEMENTS
   Brand badge, headings, footer note.
══════════════════════════════════════════════════════════════════════════════ */

/* ── Brand badge ─────────────────────────────────────────────────────────── */
.auth-card__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.auth-card__brand-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-md);
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-card__brand-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.auth-card__brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: -0.01em;
}

/* ── Headings ────────────────────────────────────────────────────────────── */
.auth-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.auth-card__subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* ── Footer note ─────────────────────────────────────────────────────────── */
.auth-card__footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.auth-card__footer a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--t);
}

.auth-card__footer a:hover { color: var(--accent-dark); }


/* ══════════════════════════════════════════════════════════════════════════════
   4. ERROR BANNER
   Full-width red alert at the top of a form — for general / server errors.
══════════════════════════════════════════════════════════════════════════════ */

.auth-error-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--red-dim);
    border: 1px solid #FCA5A5;
    border-radius: var(--r-md);
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 0.84rem;
    color: #B91C1C;
    line-height: 1.5;
}

.auth-error-banner svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}


/* ══════════════════════════════════════════════════════════════════════════════
   5. FORM LAYOUT
══════════════════════════════════════════════════════════════════════════════ */

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* ══════════════════════════════════════════════════════════════════════════════
   6. FIELD BLOCKS
══════════════════════════════════════════════════════════════════════════════ */

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}

.auth-field:last-of-type { margin-bottom: 0; }

/* ── Label ───────────────────────────────────────────────────────────────── */
.auth-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

/* Row that puts the label on the left and a small link on the right —
   used for the password field to slot in "Forgot password?" inline */
.auth-label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.auth-label-link {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: color var(--t);
    white-space: nowrap;
}

.auth-label-link:hover { color: var(--accent-dark); }

/* ── Password field group — tinted box for the two password fields ────────── */
.auth-field-group {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    padding: 16px 16px 4px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.auth-field-group .auth-field       { margin-bottom: 14px; }
.auth-field-group .auth-field:last-child { margin-bottom: 12px; }

.auth-field-group-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}


/* ══════════════════════════════════════════════════════════════════════════════
   7. INPUT STYLES
   Default → focus → error states.
══════════════════════════════════════════════════════════════════════════════ */

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid var(--border-mid);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--bg-surface);
    transition: border-color var(--t), box-shadow var(--t);
    outline: none;
}

.auth-input::placeholder { color: var(--text-muted); }

.auth-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

/* Error state */
.auth-input--error { border-color: var(--red); }

.auth-input--error:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-dim);
}

/* Extra right padding when the show/hide toggle button is present */
.auth-input-wrap--has-toggle .auth-input { padding-right: 44px; }


/* ══════════════════════════════════════════════════════════════════════════════
   8. PASSWORD SHOW / HIDE TOGGLE
══════════════════════════════════════════════════════════════════════════════ */

.auth-pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    transition: color var(--t), background var(--t);
    line-height: 0;
}

.auth-pw-toggle:hover {
    color: var(--text-secondary);
    background: var(--bg-elevated);
}

.auth-pw-toggle svg {
    width: 17px;
    height: 17px;
    pointer-events: none;
    flex-shrink: 0;
}

/* Eye icon visibility — toggled via data-visible attribute in JS */
.auth-pw-toggle .icon-eye-off                     { display: none; }
.auth-pw-toggle[data-visible="true"] .icon-eye     { display: none; }
.auth-pw-toggle[data-visible="true"] .icon-eye-off { display: block; }


/* ══════════════════════════════════════════════════════════════════════════════
   9. FIELD-LEVEL MESSAGES
══════════════════════════════════════════════════════════════════════════════ */

/* Inline error below a field */
.auth-field-error {
    font-size: 0.78rem;
    color: var(--red);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.auth-field-error svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.auth-field-error a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
}

/* Muted helper text below a field */
.auth-field-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════════════════════════
   10. SUBMIT BUTTON
   Used on all three registration steps.
══════════════════════════════════════════════════════════════════════════════ */

.auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    margin-top: 24px;
    padding: 0 24px;
    border-radius: var(--r-md);
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--t), box-shadow var(--t), transform var(--t);
}

.auth-submit:hover {
    background: var(--accent-dark);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.auth-submit:active {
    transform: translateY(1px);
    box-shadow: none;
}

.auth-submit svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform var(--t);
}

.auth-submit:hover svg { transform: translateX(3px); }


/* ══════════════════════════════════════════════════════════════════════════════
   11. BILLING PERIOD TOGGLE  (choose-plan.php)
   Monthly / Annual pill toggle displayed above the plan cards.
══════════════════════════════════════════════════════════════════════════════ */

/* Outer wrapper — centres the toggle */
.billing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

/* Pill container */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: 99px;
    padding: 3px;
    gap: 2px;
}

/* Individual option button */
.billing-toggle__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border-radius: 99px;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background var(--t), color var(--t), box-shadow var(--t);
    white-space: nowrap;
    line-height: 1;
}

/* Active state — floats up with a white pill */
.billing-toggle__btn--active {
    background: var(--bg-surface);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.billing-toggle__btn:not(.billing-toggle__btn--active):hover {
    color: var(--text-secondary);
}

/* "Save X%" badge inside the Annual button */
.billing-toggle__save {
    display: inline-flex;
    align-items: center;
    background: var(--green-dim);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 2px 7px;
    border-radius: 99px;
    line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════════════════════════
   12. PLAN GRID  (choose-plan.php)
   Three plan cards in a row on desktop; stacked on mobile.
══════════════════════════════════════════════════════════════════════════════ */

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

/* ── Individual plan card ────────────────────────────────────────────────── */
.plan-card {
    position: relative;
    background: var(--bg-surface);
    border: 2px solid var(--border-mid);
    border-radius: var(--r-lg);
    padding: 22px 20px 20px;
    cursor: pointer;
    transition: border-color var(--t), background var(--t), box-shadow var(--t),
                transform var(--t);
    display: flex;
    flex-direction: column;
    gap: 0;
    user-select: none;
}

.plan-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

/* Selected state */
.plan-card--selected {
    border-color: var(--accent);
    background: var(--accent-dim);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.plan-card--selected:hover {
    transform: none;
}

/* ── Plan name ───────────────────────────────────────────────────────────── */
.plan-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

/* ── Plan price ──────────────────────────────────────────────────────────── */
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 16px;
    line-height: 1;
}

.plan-price__amount {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.plan-price__currency {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    align-self: flex-start;
    margin-top: 4px;
}

.plan-price__period {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Free plan — "Free" instead of "£0" */
.plan-price--free .plan-price__amount {
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* "billed annually" note — hidden by default, shown when annual toggle is active */
.plan-price__annual-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: none;
    line-height: 1;
}

/* When the plan grid switches to annual billing */
.plan-grid[data-billing="annual"] .plan-price__annual-note { display: block; }
.plan-grid[data-billing="annual"] .plan-price             { margin-bottom: 4px; }

/* ── Divider ─────────────────────────────────────────────────────────────── */
.plan-divider {
    height: 1px;
    background: var(--border-subtle);
    margin-bottom: 14px;
}

/* ── Feature list ────────────────────────────────────────────────────────── */
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;                    /* push to fill remaining card height           */
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.plan-feature__icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--green);
}

/* ── Selected tick in top-right corner ───────────────────────────────────── */
.plan-card__tick {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    display: none;              /* shown via JS when selected                   */
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-card__tick svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.plan-card--selected .plan-card__tick { display: flex; }

/* ── Continue button label ───────────────────────────────────────────────── */
/*
   The submit button text updates via JS to reflect the selected plan name.
   This just ensures the text doesn't jump around as it changes.
*/
.auth-submit__label { transition: none; }


/* ══════════════════════════════════════════════════════════════════════════════
   12. RESPONSIVE
══════════════════════════════════════════════════════════════════════════════ */

/* ── Tablet: plan cards drop to 2+1 stacked layout ─────────────────────── */
@media (max-width: 700px) {
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Third card spans full width so it doesn't sit alone looking odd */
    .plan-grid > .plan-card:last-child {
        grid-column: 1 / -1;
        max-width: 320px;
        justify-self: center;
        width: 100%;
    }

    .auth-card--wide {
        padding: 32px 24px 28px;
    }
}

/* ── Mobile: single column ──────────────────────────────────────────────── */
@media (max-width: 540px) {
    .auth-wrap { padding: 24px 16px; }

    .auth-card {
        padding: 32px 24px 28px;
        border-radius: var(--r-lg);
    }

    .auth-card--wide {
        padding: 28px 20px 24px;
        border-radius: var(--r-lg);
    }

    .auth-card__title { font-size: 1.3rem; }

    .plan-grid {
        grid-template-columns: 1fr;
    }

    .plan-grid > .plan-card:last-child {
        grid-column: auto;
        max-width: none;
        justify-self: auto;
    }
}

@media (max-width: 380px) {
    .auth-wrap { padding: 16px 12px; }
}


/* ══════════════════════════════════════════════════════════════════════════════
   13. COMPLETED STEPS SUMMARY  (create-organisation.php)
   A small strip above the form reminding the user what they've already done.
   Green ticks + muted text — reassuring without being distracting.
══════════════════════════════════════════════════════════════════════════════ */

.reg-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    background: var(--green-dim);
    border: 1px solid #BBF7D0;
    border-radius: var(--r-md);
    padding: 10px 14px;
    margin-bottom: 24px;
}

.reg-summary__item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #15803D;               /* accessible dark green                       */
    white-space: nowrap;
}

.reg-summary__item svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    stroke: #22C55E;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.reg-summary__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #86EFAC;
    flex-shrink: 0;
}
/* ══════════════════════════════════════════════════════════════════════════════
   REMEMBER ME  —  custom checkbox row
══════════════════════════════════════════════════════════════════════════════ */

/* Tightens the vertical gap above the checkbox row */
.auth-field--checkbox {
    margin-top: -4px;
}

/* The clickable label row — flex so the box and text sit inline */
.auth-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.auth-checkbox-label:hover {
    color: var(--text-primary);
}

/* Hide the native checkbox — the custom box replaces it visually */
.auth-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* The custom checkbox box */
.auth-checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--border-mid);
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t), border-color var(--t), box-shadow var(--t);
}

/* Checked state — filled with brand accent */
.auth-checkbox:checked + .auth-checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

/* Tick mark drawn with a CSS border trick */
.auth-checkbox:checked + .auth-checkbox-custom::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}

/* Focus ring — keyboard accessibility */
.auth-checkbox:focus-visible + .auth-checkbox-custom {
    outline: none;
    box-shadow: 0 0 0 2px var(--bg-surface),
                0 0 0 4px var(--accent-glow);
}

/* Hover nudge on the box itself */
.auth-checkbox-label:hover .auth-checkbox-custom {
    border-color: var(--accent);
}

/* ══════════════════════════════════════════════════════════════════════════════
Forgot Password CSS   
1. STAGE PROGRESS DOTS
   Three dots connected by lines showing which step the user is on.
   Sits above the title on the forgot-password card.
══════════════════════════════════════════════════════════════════════════════ */

.fp-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
}

/* Connecting line between dots */
.fp-stage-line {
    flex: 0 0 36px;
    height: 2px;
    background: var(--border-mid);
    border-radius: 99px;
    transition: background var(--t);
}

/* Individual dot */
.fp-stage-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-mid);
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}

/* Current step — larger, accent-coloured, glowing */
.fp-stage-dot--active {
    background: var(--accent);
    transform: scale(1.35);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

/* Completed step — solid accent, normal size */
.fp-stage-dot--done {
    background: var(--accent);
}


/* ══════════════════════════════════════════════════════════════════════════════
   2. OTP DIGIT INPUT BOXES
   Six equal-width boxes side-by-side for the 6-digit code entry.
══════════════════════════════════════════════════════════════════════════════ */

.otp-wrap {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.otp-input {
    /* Each box is square */
    width: 100%;
    max-width: 52px;
    aspect-ratio: 1 / 1.15;

    /* Typography — big, centred digit */
    font-family: var(--font-mono, monospace);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    caret-color: var(--accent);

    /* Box styling — matches .auth-input */
    border: 1.5px solid var(--border-mid);
    border-radius: var(--r-md);
    background: var(--bg-surface);
    outline: none;

    transition: border-color var(--t), box-shadow var(--t), background var(--t);
    -moz-appearance: textfield;    /* hide number spinners in Firefox */
}

/* Hide number spinners in Chrome/Safari */
.otp-input::-webkit-inner-spin-button,
.otp-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
    background: var(--bg-surface);
}

/* Filled state — slight tint so it's clear it has a value */
.otp-input:not(:placeholder-shown) {
    background: var(--accent-dim);
    border-color: var(--accent);
}

/* Error state */
.otp-input--error {
    border-color: var(--red);
    background: var(--red-dim);
}

.otp-input--error:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-dim);
}

/* Responsive — shrink boxes on narrow screens */
@media (max-width: 400px) {
    .otp-wrap  { gap: 5px; }
    .otp-input { font-size: 1.2rem; }
}


/* ══════════════════════════════════════════════════════════════════════════════
   3. INFO BANNER  (blue — for dev-mode notice etc.)
   Same structure as .auth-error-banner but uses accent colours.
══════════════════════════════════════════════════════════════════════════════ */

.auth-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--accent-dim);
    border: 1px solid rgba(79, 95, 232, 0.25);
    border-radius: var(--r-md);
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 0.84rem;
    color: var(--accent-dark);
    line-height: 1.5;
}

.auth-info-banner svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.auth-info-banner code {
    font-family: var(--font-mono, monospace);
    font-size: 0.82rem;
    background: rgba(79, 95, 232, 0.12);
    padding: 1px 5px;
    border-radius: 4px;
}


/* ══════════════════════════════════════════════════════════════════════════════
   4. INLINE TEXT BUTTON  (.fp-text-btn)
   Used for the "Request a new code" action inside the card footer.
   Looks like a link, behaves like a <button>.
══════════════════════════════════════════════════════════════════════════════ */

.fp-text-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;          /* inherits .auth-card__footer font size */
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    text-decoration: none;
    transition: color var(--t);
    line-height: inherit;
    vertical-align: baseline;
}

.fp-text-btn:hover {
    color: var(--accent-dark);
}
