You can see the right corner is not rounded.
The reason for this issue is because .invalid-feedback
as last child inside .input-group
.
(Answered by midzer)
The last div in the input group will be rounded but if either .valid-feedback
or .invalid-feedback
is the last div of input group,
the right corner will not rounded.
Add a .rounded-right
in input. So you can see now the right corner in rounded.