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

.auth-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f5f0e8;
  padding: 20px;
}

.auth-card {
  background: #fff9f0;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(90,60,20,0.14);
  padding: 44px 48px;
  width: 100%;
  max-width: 440px;
  border-top: 5px solid #c9923a;
}

.auth-logo {
  text-align: center;
  font-size: 2.4em;
  margin-bottom: 8px;
}

.auth-brand {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 1.05em;
  color: #6b4c2a;
  margin-bottom: 28px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.auth-title {
  font-family: 'Georgia', serif;
  font-size: 1.5em;
  color: #3a2e1e;
  margin-bottom: 6px;
}

.auth-subtitle {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.9em;
  color: #9a7a4a;
  margin-bottom: 28px;
}

.auth-error {
  background: #fdf0ef;
  border: 1px solid #e8a8a0;
  border-radius: 8px;
  color: #8b2020;
  padding: 11px 15px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.9em;
  margin-bottom: 22px;
}

.auth-success {
  background: #f0fdf4;
  border: 1px solid #a8d8b0;
  border-radius: 8px;
  color: #1a6b2a;
  padding: 11px 15px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.9em;
  margin-bottom: 22px;
}

.auth-form .form-group {
  margin-bottom: 18px;
}

.auth-form .form-group label {
  display: block;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.82em;
  font-weight: bold;
  color: #6b4c2a;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.auth-form .form-group input,
.auth-form .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #d9c9a8;
  border-radius: 8px;
  font-family: 'Georgia', serif;
  font-size: 1em;
  color: #3a2e1e;
  background: #fdfaf4;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.auth-form .form-group input:focus,
.auth-form .form-group textarea:focus {
  border-color: #c9923a;
  box-shadow: 0 0 0 3px rgba(201,146,58,0.15);
}

.auth-btn {
  width: 100%;
  background-color: #c9923a;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  margin-top: 4px;
}

.auth-btn:hover {
  background-color: #b07a28;
  transform: translateY(-1px);
}

.auth-footer {
  text-align: center;
  margin-top: 22px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.88em;
  color: #9a7a4a;
}

.auth-footer a {
  color: #c9923a;
  font-weight: bold;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.pending-icon {
  text-align: center;
  font-size: 3.5em;
  margin-bottom: 16px;
}

.pending-card {
  background: #fff9f0;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(90,60,20,0.14);
  padding: 48px;
  width: 100%;
  max-width: 500px;
  border-top: 5px solid #5a7a3a;
  text-align: center;
}

.pending-card h1 {
  font-family: 'Georgia', serif;
  font-size: 1.6em;
  color: #3a2e1e;
  margin-bottom: 14px;
}

.pending-card p {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #6b4c2a;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 12px;
}

.pending-card .logout-link {
  display: inline-block;
  margin-top: 24px;
  color: #c9923a;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.9em;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
  text-decoration: underline;
  padding: 0;
}

.pending-card .logout-link:hover {
  color: #b07a28;
}
