.main {
    margin-top: 50px;
    margin-bottom: 120px;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr minmax(450px, 32.2%);
    .breadcrumbs {
        grid-column: 1/-1;
        margin: 0;
    }
    .promo {
        grid-column: 1/-1;
    }
}
.sections {
    display: flex;
    flex-direction: column;
    gap: inherit;
    .section,
    section {
        border-radius: 20px;
        background: var(--white);
        display: grid;
        padding: 30px;
    }
}
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    span {
        padding: 5px 12px 6px 12px;
        border-radius: 6px;
        background: var(--blue, #016170);
        color: var(--white);
        font-size: 20px;
        font-weight: 700;
    }
    &::before {
        content: '';
        font: 100 50px/1 'icon';
        color: var(--blue, #016170);
        width: 60px;
        aspect-ratio: 1;
        flex-shrink: 0;
        display: grid;
        place-items: center;
    }
}
.right-form {
    position: sticky;
    top: 30px;
    width: 100%;
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid var(--no-color);
    background: var(--grey-2);
    box-shadow: 0px 44px 44px 0px rgba(0, 0, 0, 0.09), 0px 11px 24px 0px rgba(0, 0, 0, 0.1);
    * {
        max-width: 420px;
    }
    .heading {
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 0.72px;
        + p {
            text-align: center;
            margin-bottom: 20px;
            color: var(--text, #6c777b);
            letter-spacing: 0.48px;
        }
    }
    > label {
        display: flex;
        flex-direction: column;
        gap: 2px;
        width: 100%;
        margin-bottom: 8px;
        span {
            color: var(--text, #6c777b);
            font-size: 14px;
            letter-spacing: 0.42px;
            padding-left: 10px;
        }
        &:has(> input.required) span::after {
            content: '*';
            color: var(--error);
            font-size: inherit;
        }
    }
    input {
        border-radius: 10px;
        background: var(--white);
        padding: 8px 10px 9px 12px;
        color: var(--grey-4);
        border: 1px solid var(--no-color);
        cursor: pointer;
        &:focus {
            border-color: var(--blue);
        }
        &:-webkit-autofill {
            box-shadow: inset 0 0 0 50px var(--white) !important;
        }
    }
    .green-btn {
        width: 100%;
        margin: 30px 0 10px;
        + div {
            display: flex;
            gap: 12px;
            p {
                font-size: 16px;
                a {
                    font-size: inherit;
                    color: var(--blue, #016170);
                    white-space: nowrap;
                }
            }
        }
    }
    .check {
        position: relative;
        cursor: pointer;
        &::before {
            content: '\e918';
            font: 100 9px / 1 'icon';
            width: 16px;
            height: 16px;
            border-radius: 4px;
            background-color: var(--white);
            display: grid;
            place-items: center;
            color: var(--no-color);
        }
        > input {
            position: absolute;
            z-index: -11;
            opacity: 0;
        }
        &:has(input:checked)::before {
            color: var(--blue);
        }
    }
}
@media screen and (max-width: 1280px) {
    .main {
        grid-template-columns: 100%;
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .main {
        margin-top: 20px;
        margin-bottom: 60px;
        gap: 10px;
        grid-template-columns: 100%;
        .breadcrumbs {
            margin-bottom: 10px;
        }
    }
    .sections :is(.section, section) {
        padding: 20px 10px;
    }
    .section-title {
        span {
            font-size: 16px;
        }
        &::before {
            font-size: 30px;
            width: 40px;
        }
    }
    .right-form {
        position: relative;
        top: 0;
        padding: 30px 10px;
        .heading {
            font-size: 20px;
            letter-spacing: 0.6px;
        }
    }
}