How to left align the login required welcome message

A theme component with a little CSS will do the trick,

body.static-login .login-welcome {
  text-align: left;
  align-items: start;
}

Before:

After:

You could also remove the box around it

body.static-login .login-welcome {
  text-align: left;
  align-items: start;
  background-color: transparent; 
  border: none; 
  box-shadow: none;
}