Browsers have custom css in their default stylesheet for fieldset elements.
Браузеры имеют свои css стили для fieldset по умолчанию.
On Chrome it has `min-width: -webkit-min-content;`
В Chrome для него есть `min-width: -webkit-min-content;`
You could just set this rule :
Вы можете указать это свойство
.section fieldset{
min-width: 0;
}