/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Design tokens (placeholder — not finalised) ────────── */
:root {
  --bg:           #e0e5ec;
  --shadow-dark:  #a3b1c6;
  --shadow-light: #ffffff;
  --text:         #4a5568;
  --text-muted:   #8896a5;
}

/* ── Base ───────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  min-height: 100vh;
}

/* ── Layout ─────────────────────────────────────────────── */
.center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* ── Search bar ─────────────────────────────────────────── */
.search-wrap {
  position: relative;
  width: 360px;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 16px 24px 16px 50px;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  box-shadow:
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
  transition: box-shadow 0.2s ease;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  box-shadow:
    inset 5px 5px 10px var(--shadow-dark),
    inset -5px -5px 10px var(--shadow-light);
}
