form {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;

        @media (min-width: 800px) {
            grid-template-columns: 1fr 1fr;
        }
    }

    label {
        border: 1px solid var(--theme-10) !important;
        border-radius: 0.25rem;
        padding: 0.5rem;
        display: flex;

        input {
            flex-grow: 1;
            border: none !important;
            margin-left: 0.5rem;
            font-weight: 400;
        }
    }

    textarea {
        border: 1px solid var(--theme-10) !important;
        border-radius: 0.25rem;
        padding: 0.5rem;
    }
}
