Is there a way to place a red asterisk inside an input field on the far right side? My form doesn't have enough space to include an asterisk separately, and inserting it in an unconventional manner would look odd. Below is the CSS I am using for my input fields:
input {
padding: 15px;
border: 1px solid #ccc;
border-radius: 3px;
margin-bottom: 10px;
box-sizing: border-box;
font-family: montserrat;
color: #2C3E50;
font-size: 13px;
}
Does anyone know of a solution to achieve this? Thank you.