/* Hide email/password sign-in form on /auth/sign_in.
   The Discord OAuth button lives in .alternative-login which stays visible. */
form#new_user.new_user { display: none !important; }
a[href="/auth/password/new"] { display: none !important; }
.alternative-login::before { display: none !important; }

/* Hide the Create account button across the React app — it links to the
   closed-registrations modal whose hardcoded React copy does not mention
   Discord. The Sign in path (which routes through Discord) is enough. */
a[href="/auth/sign_up"],
a[href^="/auth/sign_up"] {
  display: none !important;
}


