/* auth.css — sign-up & password reset forms */

.auth-wrapper {
  max-width: 420px;
  margin: 0 auto;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.auth-field label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.auth-field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.6em 0.9em;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(245,237,216,0.05);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.auth-field input:focus {
  border-color: var(--gold);
}
.auth-field input::placeholder {
  color: var(--steel-light);
}

.auth-submit {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.85em 1.8em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  transition: opacity 0.2s;
  margin-top: 0.4rem;
}
.auth-submit:hover { opacity: 0.88; }
.auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-message {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.7em 1em;
  border-radius: 2px;
  display: none;
}
.auth-message.error {
  display: block;
  background: rgba(255,80,60,0.12);
  border: 1px solid rgba(255,80,60,0.35);
  color: #ff7b6b;
}
.auth-message.success {
  display: block;
  background: rgba(100,210,110,0.12);
  border: 1px solid rgba(100,210,110,0.35);
  color: #6fcf75;
}

.auth-links {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--steel-light);
}
.auth-links a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.auth-links a:hover { color: #fff; }

.auth-privacy {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--steel-light);
  text-align: center;
}
.auth-privacy a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
