:root {
  --radius: 16px;
  --shadow: 0 12px 28px rgba(0, 0, 0, .08);
  --bg: #f7fafc;
  --text: #111827;
  --muted: #6b7280;
  --accent: #2563eb;
  --pink: #ec4899;
  --font-size: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Noto Sans JP";
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #eef2ff 60%, #e0e7ff);
  font-size: var(--font-size);
}

.card {
  width: min(560px, 92vw);
  margin: 6vh auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  /* 수정 */
  padding: clamp(16px, 4vw, 28px) clamp(12px, 4vw, 24px);
}

/* 폼 구조 */
.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.label {
  font-weight: 600;
  color: var(--muted);
}

/* 입력창 */
.input {
  height: 44px;
  padding: 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
  font-size: clamp(0.9rem, 2vw, 1rem); /* 수정 */
}

/* 버튼 */
.btn {
  height: 48px;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  font-size: clamp(0.95rem, 2.5vw, 1rem); /* 수정 */
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.page-menu .circle-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 5vw, 28px); /* 수정 */
  align-items: center;
  justify-items: center;
  margin-top: 8px;
}