/* /assets/css/pages/register.css */

/* ── 소셜 로그인 버튼 목록 ── */
.social-login-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.btn-social {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--line, rgba(0,0,0,.18));
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg, #111);
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
  text-align: left;
}

.btn-social:hover {
  background: var(--card2, #f5f8ff);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.btn-social:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.social-icon--google {
  background: #fff;
  border: 1.5px solid #dadce0;
  color: #4285f4;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 16px;
}

.social-icon--facebook {
  background: #1877f2;
  color: #fff;
  font-size: 17px;
  padding-top: 1px;
}

.social-icon--apple {
  background: #000;
  color: #fff;
  font-size: 18px;
}

/* ── 인증 메시지 ── */
.auth-msg {
  font-size: 13px;
  min-height: 18px;
  margin-top: 10px;
  color: var(--muted);
}

/* ── 구분선 ── */
.reg-divider {
  margin-top: 8px;
  padding: 6px 0 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
  border-top: 1px solid var(--line, rgba(0,0,0,.1));
}

.field em.req,
.check em.req {
  color: var(--accent, #2563eb);
  font-style: normal;
  margin-left: 2px;
}

.field small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}

.mono {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  word-break: break-all;
}

/* ── 진행 단계 박스 ── */
.step-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--card2, #eef5ff);
  border: 1px solid var(--line, rgba(0,0,0,.1));
  border-radius: 14px;
  margin-top: 4px;
}

.step {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
  transition: color .2s;
}

.step[data-status="doing"] {
  color: var(--accent, #2563eb);
  font-weight: 600;
}

.step[data-status="doing"]::after {
  content: " ⏳";
}

.step[data-status="done"] {
  color: #16a34a;
}

.step[data-status="done"]::after {
  content: " ✓";
  font-weight: 700;
}

.step[data-status="error"] {
  color: #dc2626;
}

.step[data-status="error"]::after {
  content: " ✗ (건너뜀)";
}
