.auth-section {
  padding: 3rem 0;
  min-height: calc(100vh - 73px - 60px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.auth-card {
  background-color: #fff;
  border: 1px solid #e0d3c2;
  border-radius: 8px;
  padding: 2rem 2.25rem;
  max-width: 380px;
  width: 100%;
}

.auth-card h3 {
  color: #6b3e1e;
  margin-bottom: 1.25rem;
}

.auth-field {
  margin-bottom: 1rem;
}

.auth-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #2b1d0e;
}

.auth-field input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid #cbb89f;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.auth-submit {
  width: 100%;
  border: none;
  margin-top: 0.5rem;
}

.auth-links {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.auth-links a {
  color: #6b3e1e;
}

.auth-message {
  margin-top: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
  font-size: 0.9rem;
  display: none;
}

.auth-message.error {
  display: block;
  background-color: #fbe4e0;
  color: #8a2f1f;
}

.auth-message.success {
  display: block;
  background-color: #e3f0e0;
  color: #2f5c1f;
}

.pending-list {
  list-style: none;
  max-width: 520px;
  margin-top: 1.5rem;
}

.pending-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #e0d3c2;
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 0.75rem;
}

.pending-item-name {
  font-weight: 700;
  color: #6b3e1e;
}

.pending-item-date {
  font-size: 0.85rem;
  color: #7a6a58;
  margin-left: 0.5rem;
}

.pending-approve-btn {
  border: none;
}

.streak-summary {
  font-size: 0.95rem;
  color: #7a6a58;
  margin: 0.25rem 0 0.75rem;
}

.streak-summary.active {
  color: #d9722c;
  font-weight: 700;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
}

.route-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #e8a33d;
  color: #2b1d0e;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.route-badge::before {
  content: "🏆";
}

.checkin-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.checkin-item-comment {
  font-size: 0.9rem;
  font-style: italic;
  color: #4a3a2a;
  margin: 0;
}
