* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #151515;
    background: #ffffff;
}

.page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 0 36px;
}

.panel {
    width: min(100%, 720px);
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0 16px;
    box-shadow: none;
}

h1 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0;
}

h2 {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
}

p {
    margin: 0 0 28px;
    color: #525252;
    line-height: 1.5;
    font-size: 17px;
}

.form {
    display: grid;
    gap: 18px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    padding: 13px 14px;
    font: inherit;
    background: #ffffff;
}

textarea {
    resize: vertical;
}

.button-link,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 4px;
    border: 1px solid #151515;
    padding: 0 18px;
    font: inherit;
    font-weight: 650;
    background: #151515;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

a {
    color: #005bd3;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.errors {
    margin: 0 0 24px;
    color: #bf0711;
}

.notice {
    background: #fff6df;
    border: 1px solid #ead49a;
    border-radius: 4px;
    color: #4d3b00;
    padding: 14px 16px;
}

.summary {
    display: grid;
    gap: 0;
    margin: 0 0 28px;
}

.summary div {
    border-top: 1px solid #e8e8e8;
    padding: 14px 0;
}

.summary dt {
    color: #666666;
    font-size: 14px;
    margin-bottom: 4px;
}

.summary dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.receipt-text {
    margin: 0 0 28px;
}

.receipt-text p {
    margin-bottom: 18px;
}

@media (max-width: 520px) {
    .page {
        padding: 12px 0 28px;
    }

    .panel {
        padding: 0 12px;
    }

    .button-link,
    button {
        width: 100%;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }
}
