:root {
    --ger-background: #1b002f;
    --ger-accent: #e847f7;
    --ger-white: #fff;
    --ger-ink: #110018;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--ger-background);
}

body.ger-page {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background: var(--ger-background);
    color: var(--ger-white);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.ger-landing {
    display: grid;
    grid-template-columns: 392px 324px;
    grid-template-areas: "copy visual";
    align-items: start;
    column-gap: 70px;
    width: 786px;
    min-height: 100vh;
    margin: 0 auto;
    padding: calc(50vh - 163px) 0 40px;
    position: relative;
    left: 1px;
}

.ger-copy {
    grid-area: copy;
    padding-top: 4px;
}

.ger-heading {
    margin: 0 0 16px;
    color: var(--ger-white);
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.08;
    text-align: center;
}

.ger-panel {
    width: 100%;
    min-height: 305px;
    padding: 33px 25px 22px;
    border-radius: 9px;
    background: var(--ger-accent);
}

.ger-form {
    margin: 0;
}

.ger-field {
    margin: 0 0 8px;
}

.ger-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
}

.ger-row .ger-field {
    margin-bottom: 0;
}

.ger-form input[type="text"],
.ger-form input[type="email"],
.ger-form input[type="tel"] {
    display: block;
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    outline: 0;
    background: var(--ger-white);
    color: var(--ger-ink);
    font: 400 11px/38px Arial, Helvetica, sans-serif;
}

.ger-form input::placeholder {
    color: #000;
    opacity: 1;
}

.ger-form input:focus-visible,
.ger-submit:focus-visible,
.ger-check input:focus-visible + label::before {
    outline: 2px solid var(--ger-ink);
    outline-offset: 2px;
}

.ger-consents {
    margin-top: 10px;
}

.ger-check {
    position: relative;
    margin: 0 0 10px;
    padding-left: 20px;
    color: var(--ger-white);
    font-size: 8px;
    font-weight: 400;
    line-height: 1.12;
}

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

.ger-check label {
    display: block;
    cursor: pointer;
}

.ger-check label::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    content: "";
}

.ger-check input:checked + label::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ger-white);
    content: "";
}

.ger-check a {
    color: inherit;
    text-decoration: underline;
}

.ger-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 23px;
}

.ger-submit {
    min-width: 93px;
    height: 31px;
    padding: 0 22px;
    border: 0;
    border-radius: 7px;
    background: var(--ger-white);
    color: #111;
    cursor: pointer;
    font: 700 11px/31px Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ger-submit:hover {
    background: #f7f7f7;
}

.ger-error {
    margin: 0 0 12px;
    padding: 8px 10px;
    border-radius: 5px;
    background: rgba(27, 0, 47, .16);
    color: var(--ger-white);
    font-size: 11px;
    line-height: 1.25;
}

.ger-visual {
    grid-area: visual;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-5px);
}

.ger-logo {
    display: block;
    width: 115px;
    height: 74px;
    margin: 0 auto 16px;
    object-fit: contain;
    transform: translateY(3px);
}

.ger-illustration {
    display: block;
    width: 333px;
    height: auto;
    margin: 0 auto;
    image-rendering: auto;
    transform: translateX(-4px);
}

.ger-message-panel {
    min-height: 0;
    padding: 30px 24px;
    color: var(--ger-white);
}

.ger-message-panel h1,
.ger-message-panel h2,
.ger-message-panel h3,
.ger-message-panel p {
    margin: 0;
}

.ger-message-panel h1,
.ger-message-panel h2 {
    font-size: 22px;
    line-height: 1.15;
}

.ger-message-panel h3 {
    font-size: 17px;
    line-height: 1.25;
}

.ger-message-panel p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.35;
}

.ger-legal-shell {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.ger-legal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.ger-legal-header img {
    display: block;
    width: 92px;
    height: auto;
}

.ger-legal-home {
    color: var(--ger-white);
    font-size: 13px;
    text-decoration: none;
}

.ger-legal-content {
    overflow-wrap: anywhere;
    padding: 30px;
    border-radius: 10px;
    background: var(--ger-white);
    color: #242027;
    font-size: 14px;
    line-height: 1.55;
}

.ger-legal-content h1 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.25;
    text-align: left;
}

.ger-legal-content h2 {
    margin: 22px 0 10px;
    border: 0;
    font-size: 15px;
    line-height: 1.3;
}

.ger-legal-content table {
    display: table;
    width: 100%;
    margin: 12px 0 18px;
    border-collapse: collapse;
    table-layout: fixed;
}

.ger-legal-content th,
.ger-legal-content td {
    padding: 10px;
    border: 1px solid #ccc;
    vertical-align: top;
}

.ger-legal-content p {
    margin: 0 0 13px;
}

.ger-legal-content ul {
    margin: 0 0 16px;
    padding-left: 42px;
}

.ger-legal-content li {
    margin-bottom: 12px;
    padding-left: 4px;
}

.ger-legal-content .ger-legal-subtitle {
    margin-bottom: 13px;
}

.ger-privacy-table .ger-col-point {
    width: 11%;
}

.ger-privacy-table .ger-col-purpose {
    width: 46%;
}

.ger-privacy-table .ger-col-basis {
    width: 43%;
}

.ger-legal-content a {
    color: #7d148d;
}

.ger-update-date {
    margin-top: 24px;
    font-size: 12px;
    font-style: italic;
    text-align: right;
}

@media (min-width: 1280px) {
    .ger-landing {
        grid-template-columns: 490px 405px;
        column-gap: 88px;
        width: 983px;
        padding-top: calc(50vh - 208px);
        left: 0;
    }

    .ger-copy {
        width: 392px;
        transform: scale(1.25);
        transform-origin: top left;
    }

    .ger-visual {
        width: 324px;
        transform: translateY(-5px) scale(1.25);
        transform-origin: top center;
    }
}

@media (min-width: 1440px) {
    .ger-landing {
        grid-template-columns: 549px 454px;
        column-gap: 98px;
        width: 1101px;
        padding-top: calc(50vh - 235px);
    }

    .ger-copy {
        transform: scale(1.4);
    }

    .ger-visual {
        transform: translateY(-5px) scale(1.4);
    }
}

@media (min-width: 1800px) {
    .ger-landing {
        grid-template-columns: 608px 502px;
        column-gap: 109px;
        width: 1219px;
        padding-top: calc(50vh - 262px);
    }

    .ger-copy {
        transform: scale(1.55);
    }

    .ger-visual {
        transform: translateY(-5px) scale(1.55);
    }
}

@media (max-width: 767px) {
    .ger-landing {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 0;
        padding: 38px 34px 90px;
        left: 0;
    }

    .ger-visual {
        order: 1;
        width: 100%;
        transform: none;
    }

    .ger-logo {
        margin-bottom: 24px;
        transform: none;
    }

    .ger-illustration {
        width: 288px;
        max-width: 100%;
        transform: none;
    }

    .ger-copy {
        order: 2;
        width: 100%;
        padding-top: 56px;
    }

    .ger-heading {
        width: 288px;
        max-width: 100%;
        margin: 0 auto 38px;
        font-size: 18px;
        line-height: 1.12;
        text-align: left;
    }

    .ger-panel {
        min-height: 419px;
        padding: 42px 31px 29px;
        border-radius: 7px;
    }

    .ger-field {
        margin-bottom: 9px;
    }

    .ger-row {
        gap: 11px;
    }

    .ger-form input[type="text"],
    .ger-form input[type="email"],
    .ger-form input[type="tel"] {
        height: 48px;
        padding: 0 18px;
        border-radius: 7px;
        font-size: 13px;
        line-height: 48px;
    }

    .ger-consents {
        margin-top: 33px;
        padding: 0 15px 0 9px;
    }

    .ger-check {
        margin-bottom: 21px;
        padding-left: 25px;
        font-size: 10px;
        line-height: 1.2;
    }

    .ger-check label::before {
        width: 16px;
        height: 16px;
    }

    .ger-check input:checked + label::after {
        top: 4px;
        left: 4px;
    }

    .ger-actions {
        margin-top: 21px;
        padding-right: 1px;
    }

    .ger-submit {
        min-width: 117px;
        height: 38px;
        border-radius: 8px;
        font-size: 13px;
        line-height: 38px;
    }

    .ger-message-panel {
        min-height: 0;
        padding: 30px;
    }

    .ger-legal-shell {
        width: calc(100% - 28px);
        padding-top: 20px;
    }

    .ger-legal-content {
        padding: 22px 18px;
        font-size: 13px;
    }

    .ger-privacy-table .ger-col-point {
        width: 14%;
    }

    .ger-privacy-table .ger-col-purpose,
    .ger-privacy-table .ger-col-basis {
        width: 43%;
    }
}

@media (max-width: 390px) {
    .ger-landing {
        padding-right: 18px;
        padding-left: 18px;
    }

    .ger-panel {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ger-consents {
        padding: 0;
    }
}
