/* auth.css */
/* auth.css */

/* Center the auth card on the page */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

/* Login / register card */
.auth-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  padding: 2rem 1.75rem 2.25rem;
}

@media (min-width: 768px) {
  .auth-card {
    padding: 2.5rem 2.25rem 2.75rem;
  }
}

/* Section title inside auth card */
.auth-card h2 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

/* Inputs and buttons */
.auth-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.auth-button {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.auth-button:hover {
  background: #1d4ed8;
}

/* Helper text + link below form */
.auth-link {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.75rem;
  text-align: center;
}
