:root {
  color-scheme: dark;
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  background: #111418;
  color: #f7f3ea;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(46, 164, 79, .22), transparent 30%),
    linear-gradient(135deg, #111418 0%, #1b2421 48%, #23211d 100%);
}

.shell {
  width: min(960px, 100%);
}

.brand {
  margin-bottom: 24px;
}

.mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: #2ea44f;
  color: #07130b;
  font-weight: 900;
}

h1, h2, p {
  margin: 0;
}

h1 {
  margin-top: 16px;
  font-size: clamp(34px, 7vw, 72px);
  line-height: 1;
}

.brand p {
  margin-top: 10px;
  color: #c9d2c8;
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.panel {
  background: rgba(17, 20, 24, .78);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .24);
}

.panel h2 {
  font-size: 24px;
  margin-bottom: 18px;
}

label {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  color: #dce4d9;
  font-size: 14px;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 0 12px;
  font-size: 16px;
}

a, button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  font-size: 16px;
}

.primary {
  width: 100%;
  background: #2ea44f;
  color: #07130b;
}

.secondary {
  width: 100%;
  background: #f0c36a;
  color: #1e1705;
}

.ghost {
  color: #e7e1d4;
  border: 1px solid rgba(255, 255, 255, .16);
}

.dashboard {
  display: grid;
  gap: 14px;
}

.eyebrow {
  color: #9ecfae;
  font-size: 13px;
  font-weight: 800;
}

.notice {
  margin-bottom: 16px;
  padding: 13px 15px;
  border-radius: 6px;
  background: #52232b;
}

.notice.ok {
  background: #1f4c31;
}

@media (max-width: 720px) {
  body {
    padding: 18px;
    place-items: start center;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
