:root {
    --bg: #f8faf8;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --surface-muted: rgba(242, 244, 242, 0.74);
    --ink: #1f2722;
    --muted: #66756c;
    --green: #125238;
    --green-deep: #1f4d39;
    --green-soft: #2f6b4f;
    --line: rgba(112, 121, 114, 0.12);
    --line-strong: rgba(47, 107, 79, 0.22);
    --danger: #a23a3a;
    --radius: 18px;
    --control-radius: 999px;
    --shadow: 0 18px 54px rgba(31, 77, 57, 0.1);
    font-family: Manrope, Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    color: var(--ink);
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    font-family: Manrope, Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.public-body {
    background:
        linear-gradient(180deg, rgba(248, 250, 248, 0.9), rgba(248, 250, 248, 0.96)),
        url("/images/moya-sreda-bg.webp") center top / cover no-repeat fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 16px;
    border-radius: var(--control-radius);
    color: #fff;
    background: var(--green-deep);
    transform: translateY(-80px);
    transition: transform 0.16s ease;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 14px 0;
    backdrop-filter: blur(18px);
}

.topbar::before {
    position: fixed;
    inset: 0 0 auto;
    z-index: -1;
    height: 72px;
    content: "";
    background: rgba(248, 250, 248, 0.76);
    border-bottom: 1px solid rgba(112, 121, 114, 0);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--green);
    font-weight: 800;
}

.brand-mark {
    display: block;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    min-width: 0;
    gap: 1px;
}

.brand-title {
    display: block;
    color: var(--green);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.06;
}

.brand-subtitle {
    display: block;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link,
.button,
.button-secondary,
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--control-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-link {
    padding: 0 12px;
    color: var(--muted);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--green);
}

.button {
    padding: 0 20px;
    color: #fff;
    background: var(--green-soft);
    box-shadow: 0 16px 34px rgba(47, 107, 79, 0.22);
}

.button:hover,
.button:focus-visible {
    background: var(--green-deep);
    transform: translateY(-1px);
}

.button-secondary {
    padding: 0 18px;
    color: var(--green);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.66);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(18, 82, 56, 0.36);
    background: #fff;
}

.hero-band {
    position: relative;
    overflow: hidden;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    gap: 44px;
    min-height: min(500px, calc(100vh - 120px));
    align-items: center;
    padding: 34px 0 42px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 24px 0;
}

.hero-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 650px;
    justify-self: end;
    opacity: 1;
    pointer-events: none;
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 54px rgba(31, 77, 57, 0.08));
    mask-image: radial-gradient(ellipse 74% 74% at 66% 52%, #000 62%, rgba(0, 0, 0, 0.7) 78%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 74% 74% at 66% 52%, #000 62%, rgba(0, 0, 0, 0.7) 78%, transparent 100%);
}

.eyebrow {
    color: var(--green);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.hero h1,
.page-title {
    margin: 12px 0 18px;
    max-width: 820px;
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
}

.lead {
    max-width: 700px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.panel,
.card,
.auth-card,
.admin-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.section {
    padding: 34px 0;
}

.catalog-section {
    padding-top: 24px;
}

.catalog-section .section-head {
    align-items: flex-start;
    flex-direction: column;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-title {
    margin: 3px 0 0;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.08;
}

.catalog-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(520px, 100%);
}

.catalog-search input {
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    outline: none;
}

.catalog-search input:focus {
    border-color: rgba(18, 82, 56, 0.34);
    box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.1);
}

.card-grid,
.metric-grid {
    display: grid;
    gap: 14px;
}

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

.card-grid--tools {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.catalog-card {
    display: flex;
    flex-direction: column;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.swatch {
    width: 34px;
    height: 34px;
    border: 6px solid rgba(255, 255, 255, 0.76);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(31, 77, 57, 0.1);
}

.card h3 {
    margin: 20px 0 10px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.18;
}

.card p,
.muted {
    color: var(--muted);
}

.card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.tool-actions {
    display: flex;
    margin-top: auto;
    padding-top: 18px;
}

.tool-actions form {
    margin: 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: var(--control-radius);
    color: var(--green);
    background: rgba(238, 245, 240, 0.86);
    font-size: 12px;
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 16px;
    color: var(--green);
    font-weight: 800;
}

.text-link-inline {
    color: var(--green);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.legal-document .page-title {
    max-width: 920px;
}

.legal-panel {
    max-width: 920px;
}

.legal-panel h2 {
    margin: 28px 0 10px;
    color: var(--green);
    font-size: 19px;
    line-height: 1.25;
}

.legal-panel p,
.legal-panel li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

.legal-panel ul {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding-left: 20px;
}

.legal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.account-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0 18px;
}

.account-tab {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--line-strong);
    border-radius: var(--control-radius);
    color: var(--green);
    background: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 800;
}

.account-tab.active,
.account-tab[aria-current="page"] {
    color: #fff;
    border-color: var(--green-soft);
    background: var(--green-soft);
    box-shadow: 0 16px 34px rgba(47, 107, 79, 0.16);
}

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

.captcha-workspace .page-title {
    margin-bottom: 10px;
}

.captcha-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    margin: 10px 0 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.captcha-steps {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.captcha-steps span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    color: var(--green);
    background: rgba(238, 245, 240, 0.86);
    font-size: 13px;
    font-weight: 800;
}

.captcha-hero-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.captcha-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.captcha-grid--wide {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    margin-bottom: 16px;
}

.captcha-metrics {
    margin-bottom: 16px;
}

.settings-inline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 12px;
}

.field-hint {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.empty-state {
    display: grid;
    gap: 8px;
    min-height: 190px;
    align-content: center;
    padding: 20px;
    border: 1px dashed var(--line-strong);
    border-radius: 14px;
    background: rgba(248, 250, 248, 0.68);
}

.empty-state p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.captcha-secret-once {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.captcha-secret-once code,
pre {
    overflow-x: auto;
    max-width: 100%;
}

code {
    color: var(--green);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.92em;
    overflow-wrap: anywhere;
}

pre {
    margin: 10px 0 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: rgba(248, 250, 248, 0.88);
    white-space: pre-wrap;
}

.pill-list,
.doc-tabs,
.notice-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.notice-list {
    display: grid;
    margin-top: 18px;
}

.notice-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.integration-panel {
    margin-bottom: 16px;
}

.captcha-checklist {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
    padding-left: 20px;
    color: var(--muted);
}

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

.code-grid h3 {
    margin: 0;
    color: var(--green);
}

.inline-secure-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.inline-secure-form input {
    width: 180px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    outline: none;
}

.inline-secure-form input:focus {
    border-color: rgba(18, 82, 56, 0.34);
    box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.1);
}

.captcha-key-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.captcha-key-row {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(90px, 0.22fr) minmax(78px, 0.16fr) minmax(210px, auto);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
}

.captcha-key-main,
.captcha-key-meta {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.captcha-key-main code,
.captcha-key-meta code {
    word-break: break-all;
}

.captcha-key-action {
    justify-content: flex-end;
}

.settings-panel {
    min-width: 0;
}

.settings-panel--danger {
    grid-column: 1 / -1;
    border-color: rgba(162, 58, 58, 0.2);
}

.danger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: var(--control-radius);
    color: #fff;
    background: var(--danger);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
}

.danger-button:hover,
.danger-button:focus-visible {
    background: #842f2f;
}

.auth-wrap {
    display: grid;
    min-height: calc(100vh - 98px);
    place-items: center;
    padding: 34px 0 72px;
}

.auth-card {
    width: min(520px, 100%);
    padding: 28px;
    background: var(--surface-strong);
}

.auth-card--compact {
    margin-top: 14px;
    padding: 18px 28px;
}

.auth-card h1 {
    margin: 24px 0 8px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.08;
}

.field {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}

.field label {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}

.label-muted {
    color: var(--muted);
    font-weight: 600;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(18, 82, 56, 0.34);
    box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.1);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.field input[type="color"] {
    min-height: 46px;
    padding: 5px;
}

.field-error {
    color: var(--danger);
    font-size: 13px;
}

.check-row {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    margin-top: 18px;
    color: var(--green);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    user-select: none;
}

.check-row--wide {
    align-items: flex-start;
    width: 100%;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.45;
}

.check-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.check-box {
    position: relative;
    display: inline-flex;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 82, 56, 0.28);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.86);
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.check-box::after {
    width: 9px;
    height: 5px;
    content: "";
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    opacity: 0;
    transform: translateY(-1px) rotate(-45deg);
}

.check-input:checked + .check-box {
    border-color: var(--green-soft);
    background: var(--green-soft);
}

.check-input:checked + .check-box::after {
    opacity: 1;
}

.check-input:focus-visible + .check-box {
    box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.12);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.flash {
    margin: 16px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(47, 107, 79, 0.18);
    border-radius: 12px;
    color: var(--green);
    background: rgba(238, 245, 240, 0.86);
}

.site-flash {
    margin-top: 14px;
}

.admin-body {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
    background: var(--bg);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 24px;
    border-right: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.sidebar-nav {
    display: grid;
    gap: 7px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: var(--control-radius);
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.sidebar-nav a.active,
.sidebar-nav a:hover,
.sidebar-nav a:focus-visible {
    color: var(--green);
    background: rgba(238, 245, 240, 0.86);
}

.admin-main {
    min-width: 0;
    padding: 24px;
}

.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-title {
    margin: 4px 0 0;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.12;
}

.admin-panel {
    padding: 20px;
    background: var(--surface-strong);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.metric {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
}

.metric-value {
    display: block;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.metric-label {
    color: var(--muted);
    font-size: 13px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.danger-link {
    color: var(--danger);
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 800;
}

.status {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 10px;
    border-radius: var(--control-radius);
    color: var(--green);
    background: rgba(238, 245, 240, 0.86);
    font-size: 12px;
    font-weight: 800;
}

.consent {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    width: min(430px, calc(100% - 36px));
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 52px rgba(31, 39, 34, 0.14);
}

.consent[hidden] {
    display: none;
}

.consent p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.footer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 36px 0;
    color: var(--muted);
    font-size: 14px;
}

.footer a {
    color: var(--green);
    font-weight: 700;
}

@media (max-width: 960px) {
    .admin-body {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .card-grid--tools,
    .admin-grid,
    .settings-grid,
    .captcha-grid,
    .captcha-grid--wide,
    .code-grid,
    .captcha-hero-panel,
    .captcha-key-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 34px 0 44px;
    }

    .hero-visual {
        width: min(100%, 560px);
        max-width: 560px;
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(100% - 24px, 1180px);
    }

    .topbar,
    .section-head,
    .admin-top,
    .captcha-hero-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .captcha-hero-panel {
        display: flex;
    }

    .captcha-steps {
        justify-content: flex-start;
    }

    .captcha-hero-actions {
        justify-content: flex-start;
    }

    .topbar::before {
        height: 132px;
    }

    .nav-links {
        width: 100%;
    }

    .nav-link,
    .button,
    .button-secondary {
        min-height: 40px;
    }

    .hero-copy {
        padding: 18px 0;
    }

    .hero-visual {
        display: none;
    }

    .hero h1,
    .page-title {
        font-size: 36px;
    }

    .lead {
        font-size: 16px;
    }

    .catalog-search {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .card-grid,
    .card-grid--tools,
    .metric-grid,
    .admin-grid,
    .settings-grid,
    .captcha-grid,
    .captcha-grid--wide,
    .code-grid,
    .settings-inline,
    .captcha-hero-panel,
    .captcha-key-row {
        grid-template-columns: 1fr;
    }

    .captcha-key-action {
        justify-content: stretch;
    }

    .captcha-key-action input,
    .captcha-key-action .danger-link {
        width: 100%;
    }

    .auth-card {
        padding: 22px;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-actions .button,
    .form-actions .button-secondary,
    .form-actions .nav-link {
        width: 100%;
    }

    .consent {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 14px;
    }

    .consent p {
        font-size: 13px;
    }

    .consent .form-actions {
        align-items: center;
        flex-direction: row;
    }

    .consent .form-actions .button,
    .consent .form-actions .button-secondary {
        width: auto;
        flex: 1 1 0;
    }
}
