It’s actually already left aligned, but with large margin and padding. Try this:
#custom_html-10 ul {
margin: 0;
padding-inline-start: 10px;
}
#custom_html-10 means it’ll only be applied to this particular widget.
It looks like the sidebar is not wide enough for 2 columns? Unless one has an extremely large browser window. But to answer your question, there are several ways to achieve multiple columns. They almost all involve breaking the list into two. Be sure they are both contained in the same form.
One way to get two columns is to set the width of each list to 50% (or a bit less depending on margins) and float them both left. Or you could apply flex-box or grid models to achieve two column layouts.