* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f5f3ff;
  color: #28234b;
  font-family: system-ui, "Microsoft YaHei", sans-serif;
}
.login-card {
  width: min(100%, 440px);
  background: white;
  border: 1px solid #e8e1fa;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 48px #47319b12;
}
.brand {
  color: #7255d7;
  font-weight: 700;
}
h1 {
  font-size: 26px;
}
p {
  line-height: 1.7;
}
label {
  display: block;
  margin: 18px 0;
  font-size: 15px;
}
input {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #c9c1dd;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}
button {
  width: 100%;
  padding: 13px;
  border: 0;
  border-radius: 10px;
  background: #7055df;
  color: white;
  font: inherit;
  cursor: pointer;
  margin-top: 10px;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
button.secondary {
  color: #58439e;
  background: #f1edf9;
}
input:focus-visible,
button:focus-visible {
  outline: 3px solid #b5a4f3;
  outline-offset: 3px;
}
#login-message {
  color: #953d35;
  overflow-wrap: anywhere;
}
.footnote {
  color: #756e87;
  font-size: 13px;
  margin-bottom: 0;
}
[hidden] {
  display: none !important;
}
