Solved. With the addition of this at the top of the Subscription page, the Email field displays in a similar manner to the Text fields:
<style>
input[type=”email”]:hover {
border: 1px solid rgb(75, 198, 73);
}
input[type=”email”]:focus {
border: 1px solid rgb(75, 198, 73);
}
</style>