:root {
  --primary: #4B4273;
  --text: #1d1c1d;
  --muted: #4a4a4a;
  --card-border: #e1e1e1;
  --soft-bg: #fdf8f6;
  --error: #a62222;
  --success: #1f7a3f;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: var(--text);
  margin: 0;
}

.page {
  width: 100%;
  max-width: 760px;
}

.card {
  border: 1px solid var(--card-border);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 16px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(75, 66, 115, 0.25);
}

.primary-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.primary-link:hover {
  text-decoration: underline;
}
