.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 1.25rem;

    input:not([type='checkbox'], [type='submit']),
    textarea {
        border: none;
        border-bottom: 1px solid;
        background: none;
        font-size: 1rem;
        font-weight: 200;
        line-height: 1.1;
        padding: .75rem;
        font-family: inherit;
        outline: none;

        &::placeholder {
            color: #999;
        }
    }

    .privacy {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        font-weight: 200;
        font-size: 0.875rem;
        line-height: 1.2;
        grid-column: 1 / 3;
    }

    [type='submit'] {
        font-size: 1.2rem;
        font-weight: 300;
        line-height: 2rem;
        background: none;
        border: none;
        font-family: inherit;
        color: inherit;
        grid-column: 2;
        justify-self: right;
        cursor: pointer;
    }

    textarea {
        grid-column: 1 / 3;
    }
}