/* =========================================================
   REDTECH One — Product Demonstration Request
   Brand stylesheet
   ========================================================= */

:root {
    --black: #000000;
    --panel: #060606;
    --panel-2: #0a0a0a;
    --field: #131313;
    --field-border: #2e2e2e;

    --red: #e2121a;
    --red-bright: #ff2a24;
    --red-deep: #9d0006;
    --red-line: rgba(226, 18, 26, .55);
    --red-line-soft: rgba(226, 18, 26, .28);
    --red-glow: rgba(226, 18, 26, .35);

    --text: #ffffff;
    --text-dim: #b9b9bd;
    --text-mute: #8b8b90;

    --radius: 10px;
    --radius-sm: 6px;

    --header-h: 86px;
    --footer-h: 54px;

    --font: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: var(--black);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */

.site-header {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: #000;
    border-bottom: 1px solid var(--red);
    box-shadow: 0 1px 14px rgba(226, 18, 26, .28);
    position: relative;
    z-index: 5;
}

.brand {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

/* flex must not squeeze the lockup out of its aspect ratio */
.brand > a {
    display: flex;
    flex: none;
}

.brand__logo {
    height: 64px;
    width: auto;
    max-width: none;
    flex: none;
}

.brand__divider {
    width: 1px;
    height: 40px;
    background: #3a3a3a;
}

.brand__product {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
}

.brand__product em {
    font-style: normal;
    color: var(--red-bright);
}

.header__tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
}

.header__tag svg {
    color: var(--red-bright);
    flex: none;
}

/* ---------------------------------------------------------
   Layout
   --------------------------------------------------------- */

.layout {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: calc(100vh - var(--header-h) - var(--footer-h));
}

/* ---------------------------------------------------------
   Hero panel (left)
   --------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: 54px 40px 54px 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--red);
    background: #030303;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/hero-bg.png") no-repeat center right / cover;
    transform: scaleX(-1);
    opacity: .95;
    z-index: 0;
}

/* faint diagonal circuit hatching, top-right of the panel */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 62%;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(226, 18, 26, .16) 0 1px,
        transparent 1px 16px
    );
    -webkit-mask-image: linear-gradient(215deg, #000 0%, transparent 72%);
    mask-image: linear-gradient(215deg, #000 0%, transparent 72%);
    z-index: 0;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.hero__title {
    margin: 0 0 20px;
    font-size: clamp(30px, 2.55vw, 43px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.015em;
}

.hero__title span {
    display: block;
    color: var(--red-bright);
}

.hero__lead {
    margin: 0 0 34px;
    max-width: 512px;
    font-size: 17px;
    line-height: 1.5;
    color: #dcdcdf;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.pillar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 224px;
    padding: 24px 15px;
    text-align: center;
    background: rgba(12, 4, 5, .72);
    border: 1px solid var(--red-line);
    border-radius: var(--radius);
    box-shadow: inset 0 0 26px rgba(226, 18, 26, .07);
}

.pillar__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--red-bright);
}

.pillar__title {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 700;
}

.pillar__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-dim);
}

/* ---------------------------------------------------------
   Form panel (right)
   --------------------------------------------------------- */

.form-panel {
    padding: 10px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(120% 90% at 100% 0%, rgba(226, 18, 26, .10) 0%, transparent 55%),
        #050505;
}

.form-shell {
    width: 100%;
    max-width: 930px;
    padding: 12px;
    border: 1px solid var(--red-line);
    border-radius: 14px;
    box-shadow: 0 0 34px rgba(226, 18, 26, .12);
}

.form-card {
    padding: 12px 26px;
    background: rgba(10, 10, 10, .72);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
}

.form-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 10px;
}

.form-head__badge {
    flex: none;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--red);
    border-radius: 12px;
    color: var(--red-bright);
    background: rgba(226, 18, 26, .08);
}

.form-head__title {
    margin: 0 0 8px;
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.1;
}

.form-head__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-dim);
    max-width: 620px;
}

/* Fields ------------------------------------------------- */

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 12px;
}

.field--full {
    grid-column: 1 / -1;
}

.field__label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #ededf0;
}

.req {
    color: var(--red-bright);
    margin-left: 2px;
}

.input,
.select,
.textarea {
    width: 100%;
    height: 36px;
    padding: 0 13px;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--text);
    background: var(--field);
    border: 1px solid var(--field-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.textarea {
    height: 76px;
    min-height: 76px;
    padding: 10px 13px;
    line-height: 1.5;
    resize: vertical;
}

.input::placeholder,
.textarea::placeholder {
    color: #6d6d72;
}

.input:hover,
.select:hover,
.textarea:hover {
    border-color: #3d3d3d;
}

.input:focus,
.select:focus,
.textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(226, 18, 26, .18);
}

/* native date picker on a dark field */
.input[type="date"] {
    color-scheme: dark;
}

.select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 38px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9c9cf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.select option {
    background: #131313;
    color: #fff;
}

.select:invalid,
.select option[value=""] {
    color: #6d6d72;
}

/* error state */
.input.is-invalid,
.select.is-invalid,
.textarea.is-invalid {
    border-color: var(--red-bright);
    box-shadow: 0 0 0 3px rgba(255, 42, 36, .14);
}

.field__error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #ff6b64;
}

/* Consent ------------------------------------------------ */

.consent {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 10px 0 10px;
}

.consent input[type="checkbox"] {
    flex: none;
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    margin: 0;
    background: var(--field);
    border: 1px solid #4a4a4a;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: border-color .16s ease, background-color .16s ease;
}

.consent input[type="checkbox"]:hover {
    border-color: #6a6a6a;
}

.consent input[type="checkbox"]:checked {
    background: var(--red);
    border-color: var(--red);
}

.consent input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(43deg);
}

.consent input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(226, 18, 26, .3);
}

.consent__text {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-dim);
    max-width: 700px;
}

.consent__text a {
    color: var(--red-bright);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit ------------------------------------------------- */

.submit-row {
    display: flex;
    justify-content: center;
}

.btn-submit {
    min-width: 446px;
    height: 44px;
    padding: 0 30px;
    font-family: inherit;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .005em;
    background: linear-gradient(180deg, #ff2a24 0%, var(--red) 48%, #a30308 100%);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(226, 18, 26, .35);
    transition: filter .16s ease, transform .16s ease, box-shadow .16s ease;
}

.btn-submit:hover {
    filter: brightness(1.09);
    box-shadow: 0 8px 28px rgba(226, 18, 26, .45);
}

.btn-submit:active {
    transform: translateY(1px);
}

.btn-submit:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.btn-submit:disabled,
.btn-submit[aria-busy="true"] {
    cursor: progress;
    filter: saturate(.55) brightness(.8);
    box-shadow: none;
}

/* once submitted, nothing in the form can be touched again */
.is-submitting .input,
.is-submitting .select,
.is-submitting .textarea,
.is-submitting .consent input {
    pointer-events: none;
    opacity: .72;
}

/* Alerts ------------------------------------------------- */

.alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 22px;
    padding: 13px 16px;
    font-size: 13px;
    line-height: 1.45;
    border-radius: var(--radius-sm);
}

.alert--error {
    color: #ffb3ae;
    background: rgba(226, 18, 26, .10);
    border: 1px solid var(--red-line);
}

.alert svg {
    flex: none;
    margin-top: 1px;
    color: var(--red-bright);
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.site-footer {
    height: var(--footer-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 0 26px;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, .07);
    font-size: 13px;
}

.footer__support {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
}

.footer__support svg {
    color: var(--red-bright);
    flex: none;
}

.footer__support a {
    color: var(--red-bright);
}

.footer__support a:hover {
    text-decoration: underline;
}

.footer__links {
    display: flex;
    gap: 24px;
    justify-content: center;
    white-space: nowrap;
}

.footer__links a:hover {
    color: var(--red-bright);
}

.footer__copy {
    text-align: right;
    color: var(--text-dim);
}

/* ---------------------------------------------------------
   Thank-you + document pages
   --------------------------------------------------------- */

.doc {
    max-width: 900px;
    margin: 0 auto;
    padding: 54px 30px 70px;
}

.doc__eyebrow {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red-bright);
}

.doc__title {
    margin: 0 0 10px;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.doc__rule {
    width: 74px;
    height: 3px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--red-bright), transparent);
    border-radius: 3px;
}

.doc h2 {
    margin: 32px 0 10px;
    font-size: 18px;
    font-weight: 700;
}

.doc p {
    margin: 0 0 14px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-dim);
}

.doc a {
    color: var(--red-bright);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 34px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--red-bright);
}

.back-link:hover {
    text-decoration: underline;
}

.thanks {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-h) - var(--footer-h));
    padding: 50px 30px;
}

.thanks__card {
    width: 100%;
    max-width: 640px;
    padding: 46px 46px 42px;
    text-align: center;
    background: rgba(10, 10, 10, .8);
    border: 1px solid var(--red-line);
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(226, 18, 26, .14);
}

.thanks__icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 1px solid var(--red);
    border-radius: 50%;
    color: var(--red-bright);
    background: rgba(226, 18, 26, .08);
}

.thanks__title {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.24;
    font-weight: 800;
}

.thanks__text {
    margin: 0 auto 20px;
    max-width: 500px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-dim);
}

.thanks__sent {
    margin: 0 auto 18px;
    font-size: 13.5px;
    color: var(--text-dim);
}

.thanks__sent strong {
    color: #fff;
    font-weight: 600;
}

.thanks__ref {
    display: inline-block;
    padding: 11px 22px;
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: .06em;
    background: var(--field);
    border: 1px dashed var(--red-line);
    border-radius: var(--radius-sm);
}

.thanks__ref strong {
    color: var(--red-bright);
    letter-spacing: .1em;
}

.btn-ghost {
    display: inline-block;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--red);
    border-radius: 8px;
    color: #fff;
    transition: background-color .16s ease;
}

.btn-ghost:hover {
    background: rgba(226, 18, 26, .14);
}

.btn-ghost--sm {
    padding: 9px 16px;
    font-size: 12.5px;
    border-radius: 6px;
}

/* ---------------------------------------------------------
   Submissions area
   --------------------------------------------------------- */

.admin {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 30px 70px;
}

.admin--narrow {
    max-width: 900px;
}

.admin__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.admin__title {
    margin: 0 0 4px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.admin__count {
    margin: 0;
    font-size: 13px;
    color: var(--text-mute);
}

.admin__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin__search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.admin__search .input {
    max-width: 460px;
}

.admin__clear {
    font-size: 12.5px;
    color: var(--text-mute);
}

.admin__clear:hover {
    color: var(--red-bright);
}

.admin__empty {
    padding: 44px 20px;
    text-align: center;
    font-size: 14px;
    color: var(--text-mute);
    background: rgba(10, 10, 10, .6);
    border: 1px dashed #2e2e2e;
    border-radius: var(--radius);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    white-space: nowrap;
}

.table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #c9c9cf;
    background: rgba(226, 18, 26, .12);
    border-bottom: 1px solid var(--red-line);
}

.table td {
    padding: 13px 16px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: #e4e4e8;
}

.table tbody tr:last-child td {
    border-bottom: 0;
}

.table tbody tr:hover td {
    background: rgba(226, 18, 26, .06);
}

.table__ref {
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--red-bright) !important;
}

.table__sub {
    display: block;
    margin-top: 3px;
    font-size: 11.5px;
    color: var(--text-mute);
    white-space: normal;
    max-width: 260px;
}

.table a {
    color: #e4e4e8;
}

.table a:hover {
    color: var(--red-bright);
}

.admin__pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-mute);
}

.admin__pagination-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-link {
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    border: 1px solid var(--red-line);
    border-radius: 6px;
}

.page-link:hover {
    background: rgba(226, 18, 26, .14);
}

.page-link.is-disabled {
    color: #55555d;
    border-color: #2a2a2a;
    pointer-events: none;
}

.page-of {
    color: var(--text-dim);
}

/* ---------------------------------------------------------
   QR code card
   --------------------------------------------------------- */

.qr-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 34px 34px 30px;
    text-align: center;
    background: rgba(10, 10, 10, .75);
    border: 1px solid var(--red-line);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(226, 18, 26, .14);
}

.qr-card__logo {
    width: 250px;
    max-width: 70%;
    margin: 0 auto 18px;
}

.qr-card__lead {
    margin: 0 0 22px;
    font-size: 17px;
    font-weight: 700;
}

.qr-card__code {
    display: inline-block;
    padding: 14px;
    background: #fff;
    border-radius: 12px;
    line-height: 0;
}

.qr-card__code svg {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
}

.qr-card__url {
    margin: 20px 0 0;
    font-size: 12.5px;
    word-break: break-all;
    color: var(--text-dim);
}

.qr-card__tagline {
    margin: 14px 0 0;
    font-size: 12.5px;
    font-style: italic;
    color: var(--red-bright);
}

.qr-note {
    max-width: 520px;
    margin: 26px auto 0;
}

.qr-note p {
    margin: 0 0 12px;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text-mute);
}

.qr-note code {
    padding: 1px 5px;
    font-size: 11.5px;
    background: var(--field);
    border: 1px solid var(--field-border);
    border-radius: 4px;
    color: #e4e4e8;
}

@media print {
    .site-header,
    .site-footer,
    .admin__head,
    .qr-note {
        display: none !important;
    }

    body,
    .qr-card {
        background: #fff !important;
        box-shadow: none !important;
    }

    .qr-card {
        border-color: #d0d0d4;
    }

    .qr-card__lead,
    .qr-card__url {
        color: #16161a !important;
    }
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

/* the header lockup is wide — step it down before it meets the right-hand tag */
@media (max-width: 1400px) {
    :root {
        --header-h: 76px;
    }

    .brand__logo {
        height: 56px;
    }

    .brand__product,
    .header__tag {
        font-size: 21px;
    }

    .brand__divider {
        height: 34px;
    }
}

@media (max-width: 1120px) {
    .header__tag span {
        display: none;
    }
}

/* below this the lockup needs the whole bar to itself */
@media (max-width: 640px) {
    .header__tag {
        display: none;
    }
}

/* on small phones the logo alone carries the branding */
@media (max-width: 440px) {
    .brand__divider,
    .brand__product {
        display: none;
    }
}

@media (max-width: 1280px) {
    .hero {
        padding: 48px 44px;
    }

    .form-panel {
        padding: 24px 20px;
    }

    .form-card {
        padding: 22px 22px 26px;
    }

    .form-head__title {
        font-size: 27px;
    }

    .btn-submit {
        min-width: 340px;
    }
}

@media (max-width: 1024px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .hero {
        border-right: 0;
        border-bottom: 1px solid var(--red);
        padding: 54px 40px 60px;
    }

    .hero__inner,
    .hero__lead,
    .pillars {
        max-width: 640px;
    }

    .pillars {
        max-width: 560px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-h: 68px;
    }

    .site-header {
        padding: 0 16px;
    }

    .brand {
        gap: 14px;
    }

    .brand__logo {
        height: 46px;
    }

    .brand__divider {
        height: 28px;
    }

    .brand__product {
        font-size: 18px;
    }

    .header__tag svg {
        width: 28px;
        height: 28px;
    }

    .hero {
        padding: 40px 22px 46px;
    }

    .grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 15px;
    }

    /* 16px keeps iOS Safari from zooming the page on focus, and the taller
       controls give thumbs a proper target. */
    .input,
    .select,
    .textarea {
        height: 46px;
        font-size: 16px;
    }

    .textarea {
        height: 120px;
        min-height: 120px;
    }

    .field__label {
        font-size: 13.5px;
    }

    .consent {
        margin: 18px 0 16px;
    }

    .consent input[type="checkbox"] {
        width: 26px;
        height: 26px;
    }

    .consent input[type="checkbox"]:checked::after {
        left: 9px;
        top: 5px;
        width: 6px;
        height: 12px;
    }

    .consent__text {
        font-size: 13px;
    }

    .btn-submit {
        min-width: 0;
        width: 100%;
        height: 52px;
        font-size: 16px;
    }

    .site-footer {
        height: auto;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
        padding: 18px 16px;
        text-align: center;
    }

    .footer__copy {
        text-align: center;
    }
}

@media (max-width: 860px) {
    .admin {
        padding: 28px 16px 50px;
    }

    .admin__head {
        align-items: flex-start;
    }

    .admin__search {
        flex-wrap: wrap;
    }

    .admin__search .input {
        max-width: none;
        flex: 1 1 200px;
    }
}

@media (max-width: 560px) {
    .pillars {
        grid-template-columns: 1fr;
    }

    .form-shell {
        padding: 12px;
    }

    .form-head {
        gap: 14px;
    }

    .form-head__title {
        font-size: 23px;
    }

    .doc__title {
        font-size: 27px;
    }

    .thanks__card {
        padding: 34px 24px 30px;
    }
}
