/* Section stubs and the login page. */

.page-stub { background: #fff; }

.stub-main {
  display: flex;
  justify-content: center;
  padding: 80px 20px 120px;
}

.stub-card {
  max-width: 460px;
  text-align: center;
}

.stub-mark { display: flex; justify-content: center; margin-bottom: 20px; }

.stub-title { font-size: 22px; font-weight: 800; margin-bottom: 12px; }

.stub-note {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 26px;
}

.stub-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.stub-btn {
  height: 46px;
  line-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--naver-green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.stub-btn.ghost {
  background: #fff;
  border: 1px solid var(--line-strong);
  color: #333;
}

.stub-mhead {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
}

/* ── login ─────────────────────────────────────────────────────── */
.page-login { background: #fff; }

.login-page {
  max-width: 420px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  text-align: center;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}

.lp-word { font-size: 30px; font-weight: 800; color: #03c75a; letter-spacing: -1px; }

.lp-form {
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.lp-tabs { display: flex; margin-bottom: 16px; }
.lp-tabs button {
  flex: 1;
  padding: 10px 0;
  font-size: 14px;
  color: #8e8e8e;
  border-bottom: 2px solid var(--line);
}
.lp-tabs button.on { color: #222; font-weight: 700; border-bottom-color: #222; }

.lp-field { display: block; margin-bottom: 10px; }
.lp-field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 15px;
  outline: 0;
}
.lp-field input:focus { border-color: var(--naver-green); }

.lp-keep {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 2px 16px;
  font-size: 13px;
  color: #555;
}

.lp-submit {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background: var(--naver-green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.lp-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  color: #767676;
}

.lp-note {
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
