/* Exclusive Login Page Styles: Gold, Wood, Green Velvet */
body.auth-page {
  background: linear-gradient(135deg, #1a2d1a 0%, #3a5d3a 100%);
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-container {
  background: linear-gradient(135deg, #3a2c13 0%, #7c5c2b 100%);
  border-radius: 32px;
  box-shadow: 0 8px 40px 8px rgba(0,0,0,0.45), 0 0 0 8px #bfa76a inset;
  border: 6px solid #bfa76a;
  padding: 48px 36px 36px 36px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.auth-container h1 {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #fffbe6;
  font-size: 2.2em;
  margin-bottom: 0.2em;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px #000, 0 0 2px #bfa76a;
}
.subtitle {
  color: #e6d8b0;
  font-size: 1.1em;
  margin-bottom: 1.5em;
}
.auth-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em;
  margin-bottom: 1.2em;
}
.auth-form label {
  color: #fffbe6;
  font-weight: 600;
  margin-bottom: 0.2em;
  letter-spacing: 1px;
}
.auth-form input {
  width: 260px;
  padding: 0.7em 1.2em;
  border-radius: 18px;
  border: 3px solid #bfa76a;
  background: linear-gradient(135deg, #2e4d2e 0%, #4e7d4e 100%);
  color: #fffbe6;
  font-size: 1.1em;
  font-family: 'Segoe UI', Arial, sans-serif;
  box-shadow: 0 2px 12px #000a, 0 0 0 4px #bfa76a33 inset;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.auth-form input:focus {
  border: 3px solid #ffd700;
  box-shadow: 0 0 16px 4px #ffd70099, 0 0 0 4px #bfa76a55 inset;
  background: linear-gradient(135deg, #3e6d3e 0%, #6ebd6e 100%);
}
.auth-form button {
  margin-top: 0.5em;
  padding: 0.8em 2.2em;
  border-radius: 22px;
  border: none;
  background: linear-gradient(90deg, #bfa76a 0%, #ffd700 100%);
  color: #2e2a1a;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 2px 16px #000a, 0 0 0 3px #bfa76a55 inset;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.auth-form button:hover, .auth-form button:focus {
  background: linear-gradient(90deg, #ffd700 0%, #bfa76a 100%);
  color: #1a2d1a;
  box-shadow: 0 0 24px 6px #ffd70099, 0 0 0 4px #bfa76a77 inset;
}
.error-message {
  color: #fff;
  background: #b22222cc;
  border-radius: 12px;
  padding: 0.7em 1.2em;
  margin-bottom: 1em;
  font-weight: bold;
  display: none;
}
.helper-text {
  color: #e6d8b0;
  font-size: 0.98em;
  margin-top: 1.5em;
  opacity: 0.85;
}
