/* Remove any CSS-generated asterisks */
.modal-body label::after,
.modal-body input::after,
.modal-body select::after,
.modal-body textarea::after {
  content: none !important;
}

.modal-body label::before,
.modal-body input::before,
.modal-body select::before,
.modal-body textarea::before {
  content: none !important;
}

/* Remove asterisks from required attribute styling */
input[required]::after,
select[required]::after,
textarea[required]::after {
  content: none !important;
}