.auth-section {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  background: var(--accent-light);
}

.auth-container {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 480px;
}

.auth-container h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.auth-subtitle {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 30px;
}

.auth-error {
  display: none;
  background: #FFF0F0;
  color: #D32F2F;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid #FFCDD2;
}

.auth-error.visible {
  display: block;
}

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

.auth-form label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.auth-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border: 2px solid var(--accent-tan);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.password-input-wrapper {
  position: relative;
  display: block;
}

.password-input-wrapper input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.password-toggle:hover {
  color: var(--primary-orange);
}

.auth-form .form-row {
  display: flex;
  gap: 15px;
}

.auth-form .form-row .form-group {
  flex: 1;
}

.auth-switch {
  text-align: center;
  margin-top: 24px;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.auth-switch a {
  color: var(--primary-orange);
  font-weight: 600;
}

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

/* Auth page footer (minimal) */
footer.auth-footer {
  background: var(--text-dark);
  padding: 20px 40px;
}

footer.auth-footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
