:root {
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #0f1222;
  --muted: #6b7280;
  --accent: #7b6bff;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: linear-gradient(180deg, #fbfbfd, var(--bg));
  color: var(--text);
}

.wrap {
  min-height: 100vh;
  padding: 40px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card {
  width: 100%;
  max-width: 720px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 26px rgba(15,12,32,0.08);
}

.section {
  margin-bottom: 24px;
}

button {
  background: var(--accent);
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

button.secondary {
  background: #e5e7eb;
  color: #111;
}

input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

footer {
  margin-top: auto;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

footer a {
  color: #b8adff; /* light lavender accent */
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--accent);
}