/* Append a red asterisk to required-field labels on every admin page.
   `body:not(.login)` excludes the admin login page, whose username /
   password labels also carry class="required" inside #content but are
   chrome, not a data form. Django sets the `login` body class only on
   that page (registration/login.html), so this is the reliable scope. */
body:not(.login) #content label.required:after {
  content: " *";
  color: #ba2121;
  font-weight: bold;
  margin-left: 2px;
}
