/* === RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f9f7f4;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  letter-spacing: -0.01em;
}

/* === AUTH CARD === */
.auth-container {
  background: #fff;
  border: 2px solid #000;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 6px 6px 0 #000;
}

.auth-container h1 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* === STACKED FORM: labels on top, inputs equal width === */
.auth-form{
  display: flex !important;          /* override grid */
  flex-direction: column;
  align-items: stretch;               /* make children fill width */
  gap: 18px;                          /* space between field groups */
}

/* make each label sit above its input */
.auth-form label{
  display: block;
  font-weight: 700;
  margin: 0 0 8px 0;
}

/* full-width inputs, consistent look with app */
.auth-form input{
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  border: 2px solid #000;
  border-radius: 12px;
  background: #fff;
  font-size: 1rem;
}

/* full-width call to action */
.auth-form button{
  width: 100%;
  margin-top: 4px;
}


/* === BUTTON === */
.auth-form button {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #0052ff;
  color: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 3px 3px 0 #000;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.auth-form button:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #000;
  background: #003be1;
}

/* === FOOTER === */
.auth-footer {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1.25rem;
  color: #333;
}

.auth-footer a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.auth-footer a:hover {
  color: #0052ff;
}

/* === NOTE === */
.auth-note {
  font-size: 0.9rem;
  color: #555;
  margin: 12px 0 18px;
  text-align: center;
}

/* === SMALL DETAIL: LIGHTER INPUT PLACEHOLDER === */
.auth-form input::placeholder {
  color: #999;
}

/* ==== AUTH LOGO ==== */
.auth-logo {
  display: block;
  margin: 0 auto 1rem auto; /* centers horizontally + adds spacing below */
  width: 300px;             /* adjust size */
  height: auto;             /* maintain aspect ratio */
}

.auth-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ==== AUTH CONTAINER ANIMATION ==== */
.auth-container {
  animation: plunkIn 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center;
}

@keyframes plunkIn {
  0% {
    transform: translateY(-40px) scale(0.96);
    opacity: 0;
  }
  60% {
    transform: translateY(4px) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
  }
}


/* === FORGOT PASSWORD LINK === */
#forgotPasswordLink {
  display: block;            /* full-width so it can center */
  text-align: center;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
  text-underline-offset: 2px;
}

#forgotPasswordLink:hover {
  color: #0052ff;
  text-decoration: underline;
}

