body {
  margin: 0;
  background: #11111b;
  color: #cdd6f4;
  font-family: ui-sans-serif, system-ui;
  display: grid;
  place-items: center;
  height: 100vh;
}
form {
  background: #181825;
  border: 1px solid #313244;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 12px;
  min-width: 300px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #1e1e2e;
  border: 1px solid #313244;
  padding: 6px;
}
.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}
.brand span {
  display: block;
  color: #a6adc8;
  font-size: 12px;
  margin-top: 4px;
}
input,
button {
  font: inherit;
  border-radius: 10px;
  border: 1px solid #45475a;
  background: #1e1e2e;
  color: #cdd6f4;
  padding: 10px;
}
button {
  background: #89b4fa;
  color: #11111b;
  border: 0;
  font-weight: 700;
}
p {
  color: #f38ba8;
  min-height: 1.2em;
}
