I've built a simple CSS Flip card; everything works as expected except for one thing, I notice that if I flip the card, there's a zone (about half of the visible input) where the click triggers a focus on the input in the back face of the card.
This causes some issues since autocomplete will fill the back facing inputs, and I can't type in the current input since it doesn't get focus unless I click on the other half of it.
Here's the stackblitz example. It will open up with the card showing the "Log In" face, if you click on "Forgot Password?" the card will flip and show the other face with a single input, you can see here the behavior described above.
https://stackblitz.com/edit/angular-h8pca9
Also you can see if you inspect with DevTools that half of the input inspects the backfacing control, and the other half the current input:
Notice here the inspector shows the #username input
Here it shows the #email input when I hover over the right side of the same input
