.auth-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #faf7f9;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid var(--line,#ece3e8);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow,0 16px 45px rgba(19,13,4,.10));
}
.auth-brand.brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  text-decoration: none;
  font-size: 18px;
}
.auth-card h1 {
  font-size: 26px;
  margin: 0 0 8px;
  text-align: center;
  color: var(--dark,#201a0d);
}
.auth-card > p {
  margin: 0 0 26px;
  text-align: center;
  color: var(--muted,#746b59);
  font-size: 14px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark,#201a0d);
}
.auth-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  font-size: 15px;
  border: 1px solid #ddd1c7;
  border-radius: 10px;
  background: #fffdfa;
  transition: border-color .15s, box-shadow .15s;
}
.auth-form input:focus {
  outline: none;
  border-color: #b88716;
  box-shadow: 0 0 0 3px rgba(184, 135, 22, .15);
}
.auth-form input::placeholder {
  color: #b3a99c;
}
.auth-form .primary.full {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      #d8ac38,
      #9b6905);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.auth-form .primary.full:hover {
  background:
    linear-gradient(
      135deg,
      #c29320,
      #7f5502);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(184, 135, 22, .30);
}
.auth-form small {
  text-align: center;
  color: var(--muted,#746b59);
  font-size: 12px;
}
.auth-switch {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
}
.auth-switch a {
  color: #b88716;
  font-weight: 600;
  text-decoration: none;
}
.auth-switch a:hover {
  text-decoration: underline;
}
.form-error {
  background: #fdeceb;
  color: #a4302a;
  border: 1px solid #f3c8c4;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .auth-card {
    padding: 30px 22px;
    border-radius: 16px;
  }
}
