so I think you are trying to align the text in the input field to the right.
you will need to target the text in the input field, and not the parent.
maybe use a modifier class such as “form-right”
.form-right .form-control{
text-align: right;
}