.sw19p-demo-request {
    padding-bottom: 60px;

    h1 {
        text-align: center;
        margin-top: 40px;
        font-size: 32px;
        font-weight: bold;
        max-width: 750px;
        color: var(--brand-grey-dark);
    }

    h2 {
        text-align: center;
        margin-top: 10px;
        font-size: 18px;
        max-width: 750px;
        color: var(--brand-grey-dark);
        font-weight: normal;
    }

    form {
        border-top: 5px solid var(--brand-orange);
        max-width: 555px;
        margin: 40px auto 0 auto;
    }

    .promotions,
    .terms {
        a {
            color: var(--link-blue);
            text-decoration: none;
            font-weight: 500;

            &:hover {
                text-decoration: underline;
            }
        }

        input[type='checkbox'] {
            appearance: checkbox;
            -webkit-appearance: checkbox;
            width: auto;
            height: auto;
        }

        input[type='checkbox']:checked:after {
            display: none;
        }
    }

    input[type='submit'] {
        display: block;
        margin: 30px auto 0 auto;
    }

    @media (max-width: 425px) {
        h1 {
            margin-top: 30px;
            font-size: 24px;
        }

        h2 {
            font-size: 14px;
        }

        form {
            margin-top: 30px;
        }

        input[type='submit'] {
            line-height: 34px;
        }
    }
}