diff --git a/public/index.html b/public/index.html
index f5724b4..b3a6172 100644
--- a/public/index.html
+++ b/public/index.html
@@ -603,8 +603,10 @@
}
.form-group label span { color: var(--red); margin-left: 2px; }
/* Label consenso GDPR: testo in linea, non incolonnato, colore normale */
- .consent-label { font-weight: 400 !important; }
- .consent-label > span { flex: 1; min-width: 0; color: var(--text-light) !important; margin-left: 0 !important; }
+ .consent-label { width: 100%; font-weight: 400 !important; }
+ /* il checkbox NON deve ereditare width:100% dalla regola .form-group input */
+ .consent-label input[type="checkbox"] { width: 16px !important; height: 16px !important; padding: 0 !important; flex: 0 0 auto; }
+ .consent-label > span { flex: 1 1 auto; min-width: 0; color: var(--text-light) !important; margin-left: 0 !important; }
.consent-label > span a { color: var(--cyan) !important; }
.form-group input,
.form-group select,