diff --git a/crispy_bootstrap5/templates/bootstrap5/field.html b/crispy_bootstrap5/templates/bootstrap5/field.html
index ff7a26b..0251b2a 100644
--- a/crispy_bootstrap5/templates/bootstrap5/field.html
+++ b/crispy_bootstrap5/templates/bootstrap5/field.html
@@ -13,7 +13,7 @@
{% if field.label and not field|is_checkbox and form_show_labels %}
{% if field.use_fieldset %}
{% endif %}
<{% if field.use_fieldset %}legend{% else %}label{% endif %}
- {% if field.id_for_label %}for="{{ field.id_for_label }}"{% endif %} class="{% if 'form-horizontal' in form_class %}col-form-label pt-0{% else %}form-label{% endif %}{% if label_class %} {{ label_class }}{% endif %}{% if field.field.required %} requiredField{% endif %}">
+ {% if field.id_for_label %}for="{{ field.id_for_label }}"{% endif %} class="{% if 'form-horizontal' in form_class %}col-form-label pt-0{% else %}form-label{% endif %}{% if label_class %} {{ label_class }}{% endif %}{% if field.field.required %} requiredField{% endif %}{% if field.use_fieldset %} fs-6{% endif %}">
{{ field.label }}{% if field.field.required %}* {% endif %}
{% if field.use_fieldset %}legend{% else %}label{% endif %}>
{% endif %}
diff --git a/crispy_bootstrap5/templates/bootstrap5/layout/checkboxselectmultiple_inline.html b/crispy_bootstrap5/templates/bootstrap5/layout/checkboxselectmultiple_inline.html
index 263d520..94d59c0 100644
--- a/crispy_bootstrap5/templates/bootstrap5/layout/checkboxselectmultiple_inline.html
+++ b/crispy_bootstrap5/templates/bootstrap5/layout/checkboxselectmultiple_inline.html
@@ -5,7 +5,7 @@
{% if field.label %}
-
+
{{ field.label }}{% if field.field.required %}* {% endif %}
{% endif %}
diff --git a/crispy_bootstrap5/templates/bootstrap5/layout/radioselect_inline.html b/crispy_bootstrap5/templates/bootstrap5/layout/radioselect_inline.html
index 263d520..94d59c0 100644
--- a/crispy_bootstrap5/templates/bootstrap5/layout/radioselect_inline.html
+++ b/crispy_bootstrap5/templates/bootstrap5/layout/radioselect_inline.html
@@ -5,7 +5,7 @@
{% if field.label %}
-
+
{{ field.label }}{% if field.field.required %}* {% endif %}
{% endif %}
diff --git a/tests/results/checkboxes.html b/tests/results/checkboxes.html
index addfa5b..895d77f 100644
--- a/tests/results/checkboxes.html
+++ b/tests/results/checkboxes.html
@@ -1,7 +1,7 @@