/* Auth pages for Pohou — Brand Design System */
.po-auth-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(245, 185, 30, 0.07), transparent 60%),
    var(--po-black, #05070B);
}
.po-auth-card {
  width: min(420px, 100%);
  padding: 32px 28px;
  border-radius: var(--po-r-16, 16px);
  border: 1px solid var(--po-border);
  background: var(--po-surface, #0D1422);
  box-shadow: var(--po-shadow);
}
.po-auth-card h1 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--po-white, #F5F7FA);
}
.po-auth-card .po-auth-sub {
  margin: 0 0 24px;
  color: var(--po-muted);
  font-size: 14px;
}
.po-auth-card label {
  display: block;
  margin: 0 0 8px;
  color: var(--po-muted);
  font-size: 13px;
  font-weight: 600;
}
.po-auth-card input {
  width: 100%;
  height: 46px;
  margin-bottom: 16px;
  padding: 0 14px;
  border-radius: var(--po-r-12, 12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--po-input-bg, #0F1724);
  color: #fff;
  outline: none;
}
.po-auth-card input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}
.po-auth-card input:focus {
  border-color: rgba(245, 185, 30, 0.55);
  box-shadow: 0 0 0 3px rgba(245, 185, 30, 0.16);
}
.po-auth-card .po-auth-foot {
  margin-top: 18px;
  text-align: center;
  color: var(--po-muted);
  font-size: 13px;
}
.po-auth-card .po-auth-foot a { color: var(--po-gold, #F5B91E); font-weight: 700; }
.po-auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.po-auth-brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--po-r-12, 12px);
  object-fit: cover;
  border: 1px solid rgba(245, 185, 30, 0.28);
  background: #05070B;
}
.po-auth-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.po-auth-brand__text .po-brand__name {
  font-size: 16px;
  font-weight: 800;
}
.po-auth-brand__en {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--po-gray, #8D96A5);
  text-transform: uppercase;
  margin-top: 2px;
}
.po-auth-card .po-btn--primary,
.po-auth-card .po-btn--gold {
  background: var(--po-gold, #F5B91E);
  color: #0A0C10;
}
