/* register.css — 從 register.jsp 的 inline <style> 外部化而來
   （消除 style-src 'unsafe-inline'，改由收緊 CSP 的 'self' 允許）。
   詳見 docs/security/CSP_TIGHTENING_ASSESSMENT.md */

.form-control-feedback {
  position: relative;
  width: inherit;
  height: inherit;
}

.required-field > label::after {
  content: '*';
  color: red;
  margin-left: 0.25rem;
}
