Flow Login: Multiline Message

The login component of flow can display an Error Message

I want to have line breaks in the message, but neither linebreaks in the raw text nor
oder Unicode symbols lead to the result I want.

Is it possible to do it?

Should be possible with css.

Could you try the following?

vaadin-login-form-wrapper::part(error-message-description) {
    white-space: pre; 
}

Replace the pre with a setting that fits your requirements.

Yes, it does! in my case with pre-wrap. Thank you!

vaadin-login-form-wrapper::part(error-message-description) {
    white-space: pre-wrap; 
}