:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbfaf6;
  color: #1a1a1a;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 420px);
  padding: 36px 28px;
  text-align: center;
}

.brand {
  margin: 0 0 56px;
  color: #7a3a22;
  font-size: 18px;
  font-weight: 700;
}

.icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fbefe7;
  color: #7a3a22;
  font-size: 24px;
  font-weight: 700;
}

.icon.success {
  background: #e5f2ea;
  color: #3c8f5e;
}

.icon.error {
  background: #f7e2e1;
  color: #b8453f;
}

h1 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

p {
  margin: 0;
  color: #4a4844;
  font-size: 15px;
  line-height: 1.5;
}

form {
  margin-top: 28px;
}

button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: #d97757;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: #c76547;
}

button:focus-visible {
  outline: 3px solid #7a3a22;
  outline-offset: 3px;
}

.note {
  margin-top: 16px;
  color: #8c8983;
  font-size: 13px;
}
