/*
    Haiden & Partner GmbH - Website Design System
    Version: v00.1
    Source: HAIDEN & PARTNERS - DESIGNMANUAL.pdf

    Notes:
    - The brand/system typeface in the design manual is SAIRA.
    - For GDPR-friendly operation, self-host the Saira webfont files in /assets/fonts/.
    - Do not load Google Fonts directly unless this has been checked in your privacy concept.
*/

/* Optional self-hosted Saira font example. Add your licensed/self-hosted .woff2 files and uncomment.
@font-face {
    font-family: 'Saira';
    src: url('../fonts/Saira-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Saira';
    src: url('../fonts/Saira-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Saira';
    src: url('../fonts/Saira-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/

:root {
    /* Brand colors from design manual */
    --hup-orange: rgb(239, 127, 26);
    --hup-orange-dark: #c96812;
    --hup-dark: rgb(67, 66, 66);
    --hup-black: rgb(43, 42, 41);
    --hup-white: rgb(254, 254, 254);
    --hup-gray: rgb(157, 158, 158);

    /* Additional brand colors */
    --hup-blue: rgb(0, 160, 227);
    --hup-green: rgb(171, 204, 0);
    --hup-yellow: rgb(255, 222, 0);
    --hup-magenta: rgb(229, 9, 127);
    --hup-purple: rgb(146, 71, 143);
    --hup-deep-blue: rgb(24, 27, 86);

    /* Website design tokens */
    --font-main: 'Saira', 'Segoe UI', Roboto, Arial, sans-serif;
    --page-max: 1180px;
    --radius-sm: 6px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --shadow-soft: 0 22px 60px rgba(43, 42, 41, 0.13);
    --shadow-strong: 0 30px 80px rgba(43, 42, 41, 0.22);
    --transition-fast: 160ms ease;
    --transition-normal: 260ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--hup-black);
    background: #f7f7f7;
    line-height: 1.55;
    text-rendering: geometricPrecision;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(239, 127, 26, 0.5);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    display: block;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    z-index: 9999;
    padding: 0.7rem 1rem;
    background: var(--hup-orange);
    color: var(--hup-white);
    transform: translateY(-140%);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(100% - 2rem, var(--page-max));
    margin: 0 auto;
}

.topbar {
    background: var(--hup-dark);
    color: var(--hup-white);
    font-size: 0.92rem;
}

.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar a {
    text-decoration: none;
    font-weight: 600;
}

.topbar a:hover {
    color: var(--hup-orange);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lang-switch a {
    opacity: 0.72;
}

.lang-switch a[aria-current='true'] {
    opacity: 1;
    color: var(--hup-orange);
}

.header {
    background: rgba(254, 254, 254, 0.96);
    border-bottom: 1px solid rgba(67, 66, 66, 0.1);
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: blur(14px);
}

.header__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    min-width: 220px;
}

.logo img {
    width: 154px;
    height: auto;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(67, 66, 66, 0.18);
    background: var(--hup-white);
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.1vw, 1.8rem);
}

.nav a {
    font-weight: 700;
    text-decoration: none;
    color: var(--hup-dark);
    position: relative;
    white-space: nowrap;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 2px;
    background: var(--hup-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav a:hover::after,
.nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.78rem 1.15rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    color: var(--hup-white);
    background: var(--hup-orange);
    box-shadow: 0 14px 34px rgba(239, 127, 26, 0.28);
}

.button--primary:hover {
    background: var(--hup-orange-dark);
}

.button--ghost {
    color: var(--hup-white);
    border-color: rgba(254, 254, 254, 0.82);
    background: transparent;
}

.button--ghost:hover {
    background: var(--hup-white);
    color: var(--hup-dark);
}

.button--dark-outline {
    color: var(--hup-dark);
    border-color: rgba(67, 66, 66, 0.25);
    background: transparent;
}

.button--dark-outline:hover {
    border-color: var(--hup-orange);
    color: var(--hup-orange);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: min(690px, calc(100vh - 130px));
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 22%, rgba(255, 222, 0, 0.23), transparent 22rem),
        radial-gradient(circle at 10% 35%, rgba(0, 160, 227, 0.13), transparent 20rem),
        linear-gradient(135deg, rgba(43, 42, 41, 0.95), rgba(67, 66, 66, 0.94));
    color: var(--hup-white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(239, 127, 26, 0.90), rgba(239, 127, 26, 0.57) 42%, rgba(67, 66, 66, 0.40)),
        repeating-linear-gradient(135deg, transparent 0 17px, rgba(254, 254, 254, 0.035) 17px 18px);
    clip-path: polygon(0 0, 74% 0, 58% 100%, 0 100%);
}

.hero::after {
    content: 'HP';
    position: absolute;
    right: clamp(-3rem, 5vw, 3rem);
    bottom: -3rem;
    z-index: -1;
    color: rgba(254, 254, 254, 0.05);
    font-size: clamp(12rem, 28vw, 30rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.11em;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    padding: 5rem 0;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--hup-orange);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.88rem;
    font-weight: 900;
}

.hero .eyebrow {
    color: var(--hup-white);
}

.hero h1,
.section h2,
.page-title h1 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.hero h1 {
    font-size: clamp(2.7rem, 6.3vw, 5.8rem);
    max-width: 12ch;
}

.hero__lead {
    margin: 1.35rem 0 0;
    max-width: 680px;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    color: rgba(254, 254, 254, 0.94);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero__card {
    background: rgba(254, 254, 254, 0.93);
    color: var(--hup-dark);
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    border-top: 8px solid var(--hup-orange);
}

.hero__card h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.15;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.check-list li {
    display: grid;
    grid-template-columns: 1.5rem 1fr;
    gap: 0.55rem;
    align-items: start;
}

.check-list li::before {
    content: '✓';
    width: 1.35rem;
    height: 1.35rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--hup-white);
    background: var(--hup-orange);
    font-size: 0.8rem;
    font-weight: 900;
    margin-top: 0.16rem;
}

.quicklinks {
    background: var(--hup-dark);
    color: var(--hup-white);
    border-top: 1px solid rgba(254, 254, 254, 0.1);
    border-bottom: 1px solid rgba(254, 254, 254, 0.1);
}

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

.quicklinks a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 78px;
    padding: 1rem;
    border-inline: 1px solid rgba(254, 254, 254, 0.09);
    text-decoration: none;
    font-weight: 800;
    color: var(--hup-orange);
}

.quicklinks a:hover {
    background: rgba(239, 127, 26, 0.1);
    color: var(--hup-white);
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--white {
    background: var(--hup-white);
}

.section--dark {
    background: var(--hup-dark);
    color: var(--hup-white);
}

.section__head {
    max-width: 820px;
    margin-bottom: 2.3rem;
}

.section h2,
.page-title h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    color: inherit;
}

.section__lead {
    margin: 1rem 0 0;
    font-size: 1.12rem;
    color: rgba(43, 42, 41, 0.75);
}

.section--dark .section__lead {
    color: rgba(254, 254, 254, 0.77);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.card {
    background: var(--hup-white);
    border: 1px solid rgba(67, 66, 66, 0.09);
    border-radius: var(--radius-md);
    padding: 1.55rem;
    box-shadow: 0 12px 34px rgba(43, 42, 41, 0.06);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hup-orange);
}

.card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.35rem;
    line-height: 1.18;
    color: var(--hup-dark);
}

.card p {
    margin: 0;
    color: rgba(43, 42, 41, 0.74);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.feature-panel {
    background: var(--hup-white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.4rem);
    box-shadow: var(--shadow-soft);
}

.feature-panel--dark {
    background: var(--hup-black);
    color: var(--hup-white);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric {
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: rgba(239, 127, 26, 0.08);
}

.metric strong {
    display: block;
    font-size: 1.75rem;
    color: var(--hup-orange);
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(43, 42, 41, 0.72);
    font-weight: 600;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.timeline li {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.9rem;
    align-items: start;
}

.timeline__num {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--hup-orange);
    color: var(--hup-white);
    font-weight: 900;
}

.timeline h3 {
    margin: 0 0 0.25rem;
}

.timeline p {
    margin: 0;
    color: rgba(254, 254, 254, 0.74);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
}

.contact-box {
    background: var(--hup-black);
    color: var(--hup-white);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 3vw, 2.6rem);
}

.contact-box a {
    color: var(--hup-white);
    font-weight: 800;
    text-decoration-color: rgba(239, 127, 26, 0.7);
    text-decoration-thickness: 2px;
}

.form {
    display: grid;
    gap: 1rem;
    background: var(--hup-white);
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 3vw, 2.3rem);
    box-shadow: var(--shadow-soft);
}

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

.form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 800;
    color: var(--hup-dark);
}

.form input,
.form textarea,
.form select {
    width: 100%;
    border: 1px solid rgba(67, 66, 66, 0.22);
    border-radius: var(--radius-sm);
    min-height: 48px;
    padding: 0.72rem 0.85rem;
    font: inherit;
    background: #fff;
}

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

.checkbox-label {
    display: flex !important;
    grid-template-columns: unset !important;
    align-items: flex-start;
    gap: 0.75rem !important;
    font-weight: 600 !important;
}

.checkbox-label input {
    width: 1.1rem;
    min-height: 1.1rem;
    margin-top: 0.28rem;
}


.form__privacy-note {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.form__hint {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(43, 42, 41, 0.7);
}

.page-title {
    background: var(--hup-dark);
    color: var(--hup-white);
    padding: 4.5rem 0;
}

.content-page {
    background: var(--hup-white);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.content-page article {
    max-width: 900px;
}

.content-page h2 {
    margin-top: 2.4rem;
    font-size: 1.75rem;
}

.content-page p,
.content-page li {
    color: rgba(43, 42, 41, 0.78);
}

.footer {
    background: var(--hup-black);
    color: var(--hup-white);
    padding: 3rem 0 1.8rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
    gap: 2rem;
}

.footer h2,
.footer h3 {
    margin-top: 0;
}

.footer p,
.footer a {
    color: rgba(254, 254, 254, 0.78);
}

.footer a:hover {
    color: var(--hup-orange);
}

.footer__links {
    display: grid;
    gap: 0.55rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(254, 254, 254, 0.12);
    margin-top: 2rem;
    padding-top: 1.2rem;
    font-size: 0.92rem;
    color: rgba(254, 254, 254, 0.64);
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2000;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-card {
    width: min(100%, 980px);
    margin: 0 auto;
    background: var(--hup-white);
    color: var(--hup-black);
    border-radius: var(--radius-md);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
    border-top: 6px solid var(--hup-orange);
    padding: 1.25rem;
}

.cookie-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
}

.cookie-card p {
    margin: 0 0 1rem;
    color: rgba(43, 42, 41, 0.76);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-button {
    min-height: 42px;
    padding: 0.65rem 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(67, 66, 66, 0.22);
    background: var(--hup-white);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.cookie-button--primary {
    border-color: var(--hup-orange);
    background: var(--hup-orange);
    color: var(--hup-white);
}

.cookie-button:hover {
    border-color: var(--hup-orange);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(43, 42, 41, 0.58);
}

.cookie-modal.is-visible {
    display: flex;
}

.cookie-modal__panel {
    width: min(100%, 760px);
    max-height: min(88vh, 860px);
    overflow: auto;
    background: var(--hup-white);
    color: var(--hup-black);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
}

.cookie-modal__head,
.cookie-modal__body,
.cookie-modal__foot {
    padding: 1.25rem;
}

.cookie-modal__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    border-bottom: 1px solid rgba(67, 66, 66, 0.12);
}

.cookie-modal__head h2 {
    margin: 0;
}

.cookie-close {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.cookie-category {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(67, 66, 66, 0.1);
}

.cookie-category h3 {
    margin: 0 0 0.2rem;
}

.cookie-category p {
    margin: 0;
    color: rgba(43, 42, 41, 0.72);
}

.switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 58px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #b8b8b8;
    border-radius: 999px;
    transition: background var(--transition-fast);
}

.slider::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    left: 4px;
    top: 4px;
    background: var(--hup-white);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.switch input:checked + .slider {
    background: var(--hup-orange);
}

.switch input:checked + .slider::before {
    transform: translateX(24px);
}

.switch input:disabled + .slider {
    opacity: 0.72;
    cursor: not-allowed;
}

@media (max-width: 980px) {
    .header__inner {
        min-height: 82px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--hup-white);
        border-bottom: 1px solid rgba(67, 66, 66, 0.13);
        padding: 1rem;
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 0.7rem 0;
    }

    .hero__grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .quicklinks__inner,
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 1.2rem, var(--page-max));
    }

    .topbar__inner,
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0;
    }

    .logo {
        min-width: 0;
    }

    .logo img {
        width: 126px;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        padding: 3rem 0;
    }

    .hero::before {
        clip-path: none;
    }

    .metrics,
    .form__row {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-button,
    .cookie-actions .button {
        width: 100%;
    }

    .cookie-category {
        grid-template-columns: 1fr;
    }
}


.legal-list {
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) 1fr;
    gap: 0.7rem 1.2rem;
    margin: 1.25rem 0 2rem;
}

.legal-list dt {
    font-weight: 900;
    color: var(--hup-dark);
}

.legal-list dd {
    margin: 0;
    color: var(--color-text);
}

.todo-note {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: rgba(239, 127, 26, 0.12);
    color: var(--hup-dark);
    font-size: 0.82em;
    font-weight: 800;
}

.form__field--honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.status-card {
    border-left: 8px solid var(--hup-orange);
    background: var(--hup-white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.3rem);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 720px) {
    .legal-list {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .legal-list dd {
        margin-bottom: 0.75rem;
    }
}


.form__captcha {
    padding: 14px 16px;
    border: 1px solid rgba(239, 127, 26, 0.35);
    border-radius: var(--radius-sm);
    background: rgba(239, 127, 26, 0.06);
}

.form__captcha strong {
    display: inline-block;
    margin-left: 4px;
    color: var(--hup-orange-dark);
}

/* Contact form validation feedback */
.form__summary {
    border: 1px solid rgba(190, 35, 35, 0.35);
    border-left: 6px solid #be2323;
    border-radius: var(--radius-sm);
    background: rgba(190, 35, 35, 0.06);
    color: var(--hup-dark);
    padding: 0.9rem 1rem;
}

.form__summary[hidden] {
    display: none;
}

.form__summary strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #8f1d1d;
}

.form__summary ul {
    margin: 0.35rem 0 0;
    padding-left: 1.2rem;
}

.form__summary li + li {
    margin-top: 0.25rem;
}

.form__control--invalid {
    border-color: #be2323 !important;
    box-shadow: 0 0 0 3px rgba(190, 35, 35, 0.12);
}

.form__field-error {
    min-height: 1.1em;
    color: #8f1d1d;
    font-size: 0.92rem;
    font-weight: 700;
}

.form__field-error:empty {
    display: none;
}

.form button[disabled] {
    cursor: wait;
    opacity: 0.72;
}
