:root {
  color-scheme: light;
  font-family: Pretendard, Inter, "Noto Sans KR", system-ui, sans-serif;
  color: #182230;
  background: #f3f6fb;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(82, 113, 255, .11), transparent 30rem),
    #f3f6fb;
}

.shell { width: min(92vw, 430px); }

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 750;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 10px;
  background: #405cf5;
}

.card {
  padding: 36px;
  border: 1px solid #e1e7ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(36, 51, 82, .09);
}

h1 {
  margin: 0 0 10px;
  font-size: 25px;
  letter-spacing: -.03em;
}

.muted {
  margin: 0 0 28px;
  color: #667085;
  line-height: 1.6;
}

.stack { display: grid; gap: 18px; }

label span {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 650;
}

input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd7e3;
  border-radius: 10px;
  font: inherit;
  outline: none;
}

input:focus {
  border-color: #405cf5;
  box-shadow: 0 0 0 3px rgba(64, 92, 245, .12);
}

.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #405cf5;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.stack .button { width: 100%; margin-top: 4px; }
.secondary { color: #344054; background: #eef1f6; }
.actions { display: flex; justify-content: flex-end; gap: 10px; }

.alert {
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #a02222;
  background: #fff0f0;
  font-size: 14px;
}

.scope-list {
  margin: 0 0 24px;
  padding: 16px 16px 16px 38px;
  border-radius: 12px;
  background: #f7f8fb;
  line-height: 2;
}

.account {
  padding-top: 16px;
  border-top: 1px solid #e9edf3;
  color: #667085;
  font-size: 14px;
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #19a974;
  box-shadow: 0 0 0 5px rgba(25, 169, 116, .12);
}

.footer {
  margin: 18px 0 0;
  color: #8993a4;
  text-align: center;
  font-size: 13px;
}
