.login-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: radial-gradient(ellipse at 50% 30%, #1a1508 0%, var(--bg) 70%);
  background-image: url(images/moon.jpg);
  background-position: center;
}
.login-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-align: center;
  margin-bottom: 0.5rem;
}
.login-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.login-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  color: var(--cream2);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 2;
  font-weight: 300;
}
.login-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 2.5rem;
}
.login-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 320px;
}
.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 0.5px solid var(--border);
  background: var(--surface);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
  border-radius: 2px;
}
.login-btn:hover {
  background: rgba(196, 149, 90, 0.08);
  border-color: var(--gold-dim);
}
.login-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.login-note {
  margin-top: 2.5rem;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 2;
  max-width: 300px;
}
.login-error {
  color: #e24b4a;
  font-size: 12px;
  text-align: center;
  margin-bottom: 1.5rem;
}

a{
    color: #888;
}
a:hover{
    color: #fff;
}