/* ------------------------------------------------------------------
   Login‐page overrides (loaded after styles.css)
   ------------------------------------------------------------------ */

/* 1) Reset the global clamp‐based font‐size so our button shrinks back to normal */
body.login-page {
  font-size: 5rem;
}

/* 2) Enlarge the page title */
.login-page .login-container h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1rem;
  color: #333;
}

/* 3) Scale the fancy button down to “human” size */
.login-page .login-container .button-wrap {
  transform: scale(1);
  transform-origin: center center;
}