@layer components {
    @media screen and (min-width: 600px) {
        section.form-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);

            > h2 {
                grid-column: 1 / -1;
            }
        }
    }
}
