I have a vaadin-login-form that has the default css styles applied to it. The DOM looks like this 
My question is how can I use a css selector for styling the label part of the vaadin-button-container ? I'm using a css file that's being used on my LoginView like so:
@CssImport(value = "./styles/login.css", themeFor = "vaadin-login-form")
I was able to style the vaadin-login-submit part with
[part="vaadin-login-submit"] {
background-color: #0061ff;
}
in my css file but since the label part is inside the shadow dom I do not know how to select it for applying the proper css.