body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #faf7f2;
  color: #2d2926;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.card {
  width: min(460px, 100%);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(60, 47, 35, 0.16);
  padding: 24px;
}

h1 {
  margin: 0 0 16px;
  font-size: 1.4rem;
}

.input {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #ddd2c9;
  border-radius: 10px;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.button {
  display: inline-block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: #e85d75;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.button.secondary {
  background: #8f7a69;
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.flash-container {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1100;
  width: min(420px, calc(100% - 24px));
}

.alert {
  margin: 0 0 10px;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.alert-warning {
  background: #fff3cd;
}

.alert-success {
  background: #d1e7dd;
}

.alert-info {
  background: #cfe2ff;
}

.hint {
  margin-top: 14px;
  font-size: 0.9rem;
}
