/* Skryj všechna pole v registračním formuláři */
#register-form .account-form__item,
#register-form .account-form__item-group,
#register-form .form-floating {
  display: none !important;
}

/* ...ale nech viditelné EMAIL a JMÉNO/SPOLEČNOST (včetně jejich labelů), captcha */
#register-form .account-form__item:first-of-type,
#register-form .account-form__item:nth-of-type(3),
  #register-form .form-floating{
  display: block !important;
}