:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #eaf0f4;
  color: #122033;
}
* {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 20%, #cceaff 0, transparent 34%),
    linear-gradient(145deg, #f5f8fa, #dfe8ee);
}
.login-card {
  width: min(100%, 460px);
  padding: 34px;
  border: 1px solid #d5e0e7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px #10293d24;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.brand b {
  color: #028afa;
  font-size: 32px;
  letter-spacing: -0.04em;
}
.brand span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.lock {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 34px 0 22px;
  border-radius: 16px;
  background: #e6f5ff;
  color: #028afa;
  font-size: 22px;
}
.eyebrow {
  margin: 0;
  color: #028afa;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
}
h1 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.06;
}
.intro {
  margin: 0 0 26px;
  color: #607182;
  line-height: 1.55;
}
form {
  display: grid;
  gap: 10px;
}
label {
  font-size: 14px;
  font-weight: 750;
}
input {
  width: 100%;
  min-height: 58px;
  border: 1px solid #bdccd6;
  border-radius: 12px;
  padding: 0 16px;
  font:
    800 26px/1 system-ui,
    sans-serif;
  letter-spacing: 0.28em;
  text-align: center;
}
input:focus {
  outline: 3px solid #b8e2ff;
  border-color: #028afa;
}
button {
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: #028afa;
  color: #fff;
  font:
    800 15px/1 system-ui,
    sans-serif;
  cursor: pointer;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
button.secondary {
  width: 100%;
  background: #0d1b2a;
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: #80909d;
  font-size: 13px;
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #dce5eb;
}
#message {
  min-height: 22px;
  margin: 18px 0 6px;
  color: #b42318;
  font-weight: 700;
}
small {
  display: block;
  color: #7a8995;
  line-height: 1.45;
}
@media (max-width: 520px) {
  body {
    padding: 12px;
    place-items: stretch;
  }
  .login-card {
    min-height: calc(100vh - 24px);
    padding: 26px 22px;
    border-radius: 18px;
  }
}
