body {
  background: #ffe2f0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.card {
  background: #fff6fb;
  padding: 32px 28px;
  border-radius: 22px;
  border: 2px solid #f3b3cc;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  text-align: center;
  max-width: 360px;
  width: 90%;
}

.card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #7b3b4a;
}

.card p {
  margin-top: 0;
  margin-bottom: 16px;
  color: #7b3b4a;
  font-size: 14px;
}

input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8a6b8;
  margin-bottom: 12px;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #d89b3a;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.22);
  background: #c68628;
}

.note {
  margin-top: 12px;
  font-size: 11px;
  opacity: 0.75;
}