Input Text Size Change Issue

For some reason, the browser is setting my input text size to 14px. After I click within the UI the font size changes to what I’ve prescribed 16px.

How can I stop this behavior?

Looks like it’s happening when my login credentials are saved and pre-populated.

Welcome to the forum Sam!

Mind sharing a read only link so we can take a look inside your project?

The input fields are not affected by font variations you make for the body element. You have to style them separately.

<style>
input[type='text'] { font-size: 16px; }
</style>