/* Auth pages: login, register, join */

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
}

.auth-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}

.auth-logo {
  font-size: 52px;
  text-align: center;
  margin-bottom: 16px;
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.5;
}

.auth-form { margin-top: 4px; }

.auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 8px;
}
.auth-links a { font-size: 13px; }

.error-box {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: var(--error);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* Secret display */
.secret-display {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 16px;
}
.secret-value {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-primary);
  text-align: center;
  margin: 8px 0;
}
