/* --- Account login chooser modal (loaded on all pages via base) --- */
.nav-menu-item-button {
    appearance: none;
    border: 0;
    width: 100%;
    text-align: left;
    background: transparent;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.account-login-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, .55);
    padding: 16px;
}
.account-login-modal:target { display: grid; }
.account-login-modal-card {
    position: relative;
    width: min(520px, 100%);
    background: #fff;
    border: 1px solid var(--border);
    padding: 24px;
}
.account-login-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
}
.account-login-close {
    position: absolute;
    top: 8px;
    right: 8px;
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

/* =========================================================================
   Inscription (portfolio sp-*, galerie gp-*, boutique bs-*, dc-*, bp-*)
   Design V2 muséal — page plein écran (auth_base.html)
   ========================================================================= */

body.page-auth-fullscreen {
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--museum-white) !important;
}

html:has(body.page-signup-gallery),
body.page-signup-gallery {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--museum-white) !important;
}

body.page-auth-fullscreen .auth-main {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    margin: 0;
    background: var(--museum-white) !important;
}

body.page-auth-fullscreen .gp-wrap,
body.page-auth-fullscreen .gp-card,
body.page-auth-fullscreen .gp-grid,
body.page-auth-fullscreen .gp-side,
body.page-auth-fullscreen .gp-form {
    width: 100%;
    min-width: 0;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

body.page-auth-fullscreen .gp-wrap,
body.page-auth-fullscreen .gp-card,
body.page-auth-fullscreen .gp-grid {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100vw;
    max-width: 100vw;
}

body.page-auth-fullscreen .sp-wrap,
body.page-auth-fullscreen .gp-wrap,
body.page-auth-fullscreen .bs-wrap,
body.page-auth-fullscreen .dc-wrap,
body.page-auth-fullscreen .bp-wrap,
body.page-auth-fullscreen .auth-fullpage {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--museum-white) !important;
    background-image: none !important;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

body.page-auth:not(.page-auth-fullscreen) .sp-wrap,
body.page-auth:not(.page-auth-fullscreen) .gp-wrap,
body.page-auth:not(.page-auth-fullscreen) .bs-wrap {
    min-height: calc(100vh - 80px);
    background: var(--museum-gray) !important;
    padding: 24px var(--gutter) 64px;
    position: relative;
}

body.page-auth .sp-back,
body.page-auth .gp-back,
body.page-auth .bs-back,
body.page-auth .dc-back,
body.page-auth .bp-back,
body.page-auth .auth-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--museum-white);
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--museum-black);
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none !important;
    transition: border-color var(--t-fast), background var(--t-fast);
    z-index: 50;
}

body.page-auth-fullscreen .sp-back,
body.page-auth-fullscreen .gp-back,
body.page-auth-fullscreen .bs-back,
body.page-auth-fullscreen .auth-back {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    left: max(16px, env(safe-area-inset-left));
}
body.page-auth .sp-back:hover,
body.page-auth .gp-back:hover,
body.page-auth .bs-back:hover {
    border-color: var(--museum-black);
    color: var(--museum-black);
    transform: none;
    box-shadow: none !important;
}

body.page-auth-fullscreen .sp-card,
body.page-auth-fullscreen .gp-card,
body.page-auth-fullscreen .bs-card,
body.page-auth-fullscreen .auth-fullpage-grid {
    flex: 1;
    max-width: none;
    margin: 0;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

body.page-auth:not(.page-auth-fullscreen) .sp-card,
body.page-auth:not(.page-auth-fullscreen) .gp-card,
body.page-auth:not(.page-auth-fullscreen) .bs-card {
    max-width: 1180px;
    margin: 64px auto 0;
    background: var(--museum-white);
    border: 1px solid var(--border);
    overflow: hidden;
}

body.page-auth .sp-grid,
body.page-auth .gp-grid,
body.page-auth .bs-grid,
body.page-auth .auth-fullpage-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    min-height: 100%;
    flex: 1;
}

@media (max-width: 980px) {
    body.page-auth .sp-grid,
    body.page-auth .gp-grid,
    body.page-auth .bs-grid,
    body.page-auth .auth-fullpage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    body.page-auth-fullscreen .sp-side,
    body.page-auth-fullscreen .gp-side,
    body.page-auth-fullscreen .bs-side,
    body.page-auth-fullscreen .auth-side {
        min-height: auto;
        padding: clamp(48px, 12vw, 72px) var(--gutter) clamp(24px, 5vw, 32px);
        padding-top: 56px;
    }
}

body.page-auth .sp-side,
body.page-auth .gp-side,
body.page-auth .bs-side {
    background: var(--museum-black) !important;
    background-image: none !important;
    color: var(--museum-white);
    padding: clamp(32px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 0;
}
body.page-auth .sp-side::before,
body.page-auth .sp-side::after,
body.page-auth .gp-side::before,
body.page-auth .gp-side::after,
body.page-auth .bs-side::before,
body.page-auth .bs-side::after { display: none !important; }

body.page-auth .sp-side .eyebrow,
body.page-auth .gp-side .eyebrow,
body.page-auth .bs-side .eyebrow {
    color: var(--museum-white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 0;
    backdrop-filter: none;
}
body.page-auth .sp-side h2,
body.page-auth .gp-side h2,
body.page-auth .bs-side h2 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--museum-white);
}
body.page-auth .sp-side h2 em,
body.page-auth .gp-side h2 em {
    font-style: italic;
    color: var(--museum-gold);
    background: none;
    -webkit-text-fill-color: unset;
}
body.page-auth .sp-side .lead,
body.page-auth .gp-side .lead,
body.page-auth .bs-side .lead { color: rgba(255, 255, 255, .8); }

body.page-auth .sp-stats,
body.page-auth .gp-stats {
    border-color: rgba(255, 255, 255, .15);
}
body.page-auth .sp-stat strong,
body.page-auth .gp-stat strong {
    font-family: var(--font-display);
    color: var(--museum-gold);
    background: none;
    -webkit-text-fill-color: unset;
}
body.page-auth .sp-bullets li::before,
body.page-auth .gp-bullets li::before {
    background: var(--museum-gold);
    color: var(--museum-black);
    box-shadow: none;
    border-radius: 0;
}
body.page-auth .sp-trust-pill,
body.page-auth .gp-trust-pill {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0;
    backdrop-filter: none;
}

body.page-auth .sp-form,
body.page-auth .gp-form,
body.page-auth .bs-form,
body.page-auth .auth-form-panel {
    padding: clamp(32px, 4vw, 56px);
    padding-top: clamp(56px, 8vw, 72px);
    background: var(--museum-white);
    gap: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    max-height: 100vh;
    max-height: 100dvh;
}
body.page-auth .sp-form .eyebrow,
body.page-auth .gp-form .eyebrow { color: var(--museum-gold); }
body.page-auth .sp-form h1,
body.page-auth .gp-form h1 { color: var(--museum-black); }

/* ----- Sliders (portfolio / galerie / boutique) ----- */
body.page-auth .signup-slider-form,
body.page-auth .gp-slider-form,
body.page-auth .bs-slider-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.page-auth .signup-slider,
body.page-auth .gp-slider,
body.page-auth .bs-slider {
    position: relative;
    overflow: hidden;
}

body.page-auth .signup-slide,
body.page-auth .gp-slide,
body.page-auth .bs-slide {
    display: none;
    flex-direction: column;
    gap: 14px;
}

body.page-auth .signup-slide.is-active,
body.page-auth .gp-slide.is-active,
body.page-auth .bs-slide.is-active {
    display: flex;
}

body.page-auth .signup-slide-lead,
body.page-auth .gp-lead,
body.page-auth .bs-lead {
    margin: 0 0 4px;
    font-size: .92rem;
    line-height: 1.55;
    color: var(--gray-600);
}

body.page-auth .signup-slide-error,
body.page-auth .gp-error,
body.page-auth .bs-error {
    margin: 4px 0 0;
    padding: 8px 12px;
    font-size: .85rem;
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

body.page-auth .signup-slide-nav,
body.page-auth .gp-nav,
body.page-auth .bs-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

body.page-auth .gp-field,
body.page-auth .bs-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.page-auth .gp-field label,
body.page-auth .bs-field label {
    font-size: .88rem;
    font-weight: 600;
}

body.page-auth .gp-field input,
body.page-auth .gp-field select,
body.page-auth .gp-field textarea,
body.page-auth .bs-field input,
body.page-auth .bs-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 0;
    font: inherit;
}

body.page-auth .gp-field textarea {
    resize: vertical;
    min-height: 72px;
}

body.page-auth .gp-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

body.page-auth .gp-btn-ghost,
body.page-auth .bs-btn-ghost {
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--museum-black);
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
}

body.page-auth .gp-altlink,
body.page-auth .bs-altlink,
body.page-auth .sp-auth-alt {
    margin-top: 12px;
    font-size: .9rem;
    text-align: center;
}

body.page-auth .gp-bullets,
body.page-auth .bs-bullets,
body.page-auth .sp-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.page-auth .gp-bullets li,
body.page-auth .bs-bullets li,
body.page-auth .sp-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: .9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .85);
}

body.page-auth .gp-bullets li::before,
body.page-auth .bs-bullets li::before,
body.page-auth .sp-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--museum-gold);
    font-weight: 700;
}

body.page-auth .bs-workflow {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

body.page-auth .bs-workflow strong {
    display: block;
    margin-bottom: 6px;
    color: var(--museum-white);
}

/* Plans boutique */
body.page-auth .bs-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.page-auth .bs-plan {
    display: block;
    padding: 14px 16px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color .15s;
}

body.page-auth .bs-plan:has(input:checked) {
    border-color: var(--museum-black);
    background: var(--museum-gray);
}

body.page-auth .bs-plan input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.page-auth .bs-plan-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

body.page-auth .bs-plan-name {
    font-weight: 600;
}

body.page-auth .bs-plan-price {
    font-weight: 700;
    white-space: nowrap;
}

body.page-auth .bs-plan-desc {
    margin: 0;
    font-size: .85rem;
    color: var(--gray-600);
}

/* Grille thèmes boutique */
body.page-auth .bs-themes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

body.page-auth .bs-theme {
    position: relative;
    display: block;
    padding: 10px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color .15s;
}

body.page-auth .bs-theme:has(input:checked) {
    border-color: var(--museum-black);
    outline: 2px solid var(--museum-black);
    outline-offset: -2px;
}

body.page-auth .bs-theme input {
    position: absolute;
    opacity: 0;
}

body.page-auth .bs-theme-preview {
    height: 56px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
}

body.page-auth .bs-theme-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    font-size: .7rem;
    background: var(--museum-black);
    color: #fff;
    opacity: 0;
}

body.page-auth .bs-theme:has(input:checked) .bs-theme-check {
    opacity: 1;
}

body.page-auth .bs-theme-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: .8rem;
}

body.page-auth .bs-theme-name {
    font-weight: 600;
}

body.page-auth .bs-theme-tag {
    color: var(--gray-500);
}

body.page-auth .bs-theme-preview-link {
    display: inline-block;
    margin-top: 6px;
    font-size: .75rem;
    font-weight: 600;
}

/* Stepper */
body.page-auth .signup-stepper,
body.page-auth .gp-stepper,
body.page-auth .bs-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0 4px;
}
body.page-auth .signup-step-dot,
body.page-auth .gp-step,
body.page-auth .bs-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    color: var(--text-muted);
    min-width: 52px;
}

body.page-auth .signup-step-dot span,
body.page-auth .gp-step span,
body.page-auth .bs-step span {
    width: 30px;
    height: 30px;
    border-radius: 0;
    background: var(--museum-gray);
    border: 1px solid var(--border);
    box-shadow: none !important;
    transform: none !important;
}
body.page-auth .signup-step-dot.is-active,
body.page-auth .gp-step.is-active,
body.page-auth .bs-step.is-active {
    color: var(--museum-black);
}

body.page-auth .signup-step-dot.is-done,
body.page-auth .gp-step.is-done,
body.page-auth .bs-step.is-done {
    color: var(--museum-black);
}

body.page-auth .signup-step-dot.is-active span,
body.page-auth .gp-step.is-active span,
body.page-auth .bs-step.is-active span {
    background: var(--museum-black);
    border-color: var(--museum-black);
    color: var(--museum-white);
}
body.page-auth .signup-step-dot.is-done span,
body.page-auth .gp-step.is-done span,
body.page-auth .bs-step.is-done span {
    background: var(--museum-gray);
    border-color: var(--museum-gold);
    color: var(--museum-black);
}

body.page-auth .signup-step-bar,
body.page-auth .gp-bar,
body.page-auth .bs-bar {
    flex: 1 1 auto;
    height: 2px;
    background: var(--border);
    position: relative;
    min-width: 12px;
}

body.page-auth .signup-step-bar.is-done,
body.page-auth .gp-bar.is-done,
body.page-auth .bs-bar.is-done {
    background: var(--museum-gold);
}

body.page-auth .signup-step-bar::after,
body.page-auth .gp-bar::after,
body.page-auth .bs-bar::after {
    display: none;
}

body.page-auth .signup-slide-nav .btn-primary,
body.page-auth .gp-btn-primary,
body.page-auth .bs-btn-primary {
    background: var(--museum-black) !important;
    background-image: none !important;
    border: 1px solid var(--museum-black) !important;
    color: var(--museum-white) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
body.page-auth .signup-slide-nav .btn-primary:hover,
body.page-auth .gp-btn-primary:hover,
body.page-auth .bs-btn-primary:hover {
    background: var(--museum-gold) !important;
    border-color: var(--museum-gold) !important;
    color: var(--museum-black) !important;
    transform: none !important;
}

body.page-auth .signup-dropzone {
    border: 1px dashed var(--border-strong);
    border-radius: 0;
    background: var(--museum-gray);
    box-shadow: none !important;
}
body.page-auth .signup-dropzone:hover,
body.page-auth .signup-dropzone.is-dragover {
    border-color: var(--museum-black);
    background: var(--museum-white);
    transform: none;
    box-shadow: none !important;
}
body.page-auth .sp-auth-alt a { color: var(--museum-black); text-decoration-color: var(--museum-gold); }

/* Boutique domain / preview */
body.page-auth .dc-card,
body.page-auth .bp-frame {
    border: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none !important;
}

/* Connexion plein écran */
body.page-auth-fullscreen .auth-side {
    background: var(--museum-black) !important;
    color: var(--museum-white);
    padding: clamp(48px, 6vw, 64px) var(--gutter);
    padding-top: clamp(64px, 10vw, 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

body.page-auth-fullscreen .auth-side h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    margin: 0;
    color: var(--museum-white);
}

body.page-auth-fullscreen .auth-side .lead {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    max-width: 40ch;
    line-height: 1.55;
}

body.page-auth-fullscreen .auth-form-panel h1 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-weight: 400;
}

body.page-auth-fullscreen .auth-form-panel .lead {
    margin: 0 0 24px;
    color: var(--gray-600);
}

body.page-auth-fullscreen .auth-alt {
    margin-top: 20px;
    font-size: .9rem;
    text-align: center;
}

body.page-auth-fullscreen .auth-alt a {
    color: var(--museum-black);
    font-weight: 600;
}
body.page-auth .dc-option.is-selected,
body.page-auth .dc-plan.is-featured {
    border-color: var(--museum-black) !important;
    box-shadow: none !important;
    background: var(--museum-gray) !important;
}

/* ----- Galerie : champs & mot de passe ----- */
body.page-auth .gp-form-intro {
    margin: 0 0 4px;
    font-size: .9rem;
    line-height: 1.55;
    color: var(--gray-600);
    max-width: 46ch;
}

body.page-auth .gp-slide-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--museum-black);
}

body.page-auth .signup-slide-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--museum-black);
}

body.page-auth .gp-optional {
    font-weight: 400;
    color: var(--gray-500);
    font-size: .82rem;
}

body.page-auth .gp-field input:focus,
body.page-auth .gp-field select:focus,
body.page-auth .gp-field textarea:focus,
body.page-auth .bs-field input:focus {
    outline: none;
    border-color: var(--museum-black);
    box-shadow: 0 0 0 1px var(--museum-black);
}

body.page-auth .gp-slug-preview {
    margin: -4px 0 12px;
    padding: 10px 12px;
    font-size: .8rem;
    background: var(--museum-gray);
    border: 1px solid var(--border);
    line-height: 1.45;
}

body.page-auth .signup-slug-preview {
    margin: -4px 0 12px;
    padding: 10px 12px;
    font-size: .8rem;
    background: var(--museum-gray);
    border: 1px solid var(--border);
    line-height: 1.45;
}

body.page-auth .gp-slug-label {
    display: block;
    margin-bottom: 4px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray-500);
}

body.page-auth .signup-slug-label {
    display: block;
    margin-bottom: 4px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray-500);
}

body.page-auth .gp-slug-preview code {
    font-size: .78rem;
    color: var(--museum-black);
    word-break: break-all;
}

body.page-auth .signup-slug-preview code {
    font-size: .78rem;
    color: var(--museum-black);
    word-break: break-all;
}

body.page-auth .gp-side code {
    font-size: .78rem;
    padding: 2px 6px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
}

body.page-auth .gp-pw-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
}

body.page-auth .gp-pw-wrap input {
    padding-right: 44px;
}

body.page-auth .gp-pw-toggle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44px;
    border: none;
    background: transparent;
    color: var(--gray-600);
    cursor: pointer;
    display: grid;
    place-items: center;
}

body.page-auth .gp-pw-toggle:hover {
    color: var(--museum-black);
    background: var(--museum-gray);
}

body.page-auth .gp-pw-meter {
    height: 3px;
    margin-top: 8px;
    background: var(--border);
    overflow: hidden;
}

body.page-auth .gp-pw-meter > span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--museum-gold);
    transition: width .2s ease;
}

body.page-auth .gp-pw-meter > span[data-strength="2"] {
    background: #d97706;
}

body.page-auth .gp-pw-meter > span[data-strength="3"] {
    background: #65a30d;
}

body.page-auth .gp-pw-meter > span[data-strength="4"] {
    background: #15803d;
}

body.page-auth .gp-pw-hint {
    margin: 6px 0 0;
    font-size: .8rem;
    color: var(--gray-500);
}

body.page-auth .gp-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 0;
    font-size: .85rem;
    line-height: 1.5;
    color: var(--gray-700);
    cursor: pointer;
}

body.page-auth .signup-terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 0;
    font-size: .85rem;
    line-height: 1.5;
    color: var(--gray-700);
    cursor: pointer;
}

body.page-auth .gp-check input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--museum-black);
}

body.page-auth .signup-terms-check input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--museum-black);
}

body.page-auth .gp-check a {
    color: var(--museum-black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.page-auth .signup-terms-check a {
    color: var(--museum-black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.page-auth.theme-gallery .gp-side h2 em {
    color: var(--museum-gold);
}

@media (max-width: 980px) {
    body.page-auth-fullscreen .gp-form {
        padding-bottom: max(32px, env(safe-area-inset-bottom));
    }
}

body.page-auth .gp-login-form {
    gap: 14px;
}

body.page-auth .gp-login-form .gp-btn-primary,
body.page-auth .gp-login-form .gp-btn-primary.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-auth.theme-gallery .gp-side h2 em {
    font-style: italic;
}
