.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0;
  background: #f3f6f7;
  color: #1d272b;
}

.auth-shell {
  width: min(420px, calc(100% - 32px));
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #48555a;
  font-size: 14px;
}

.auth-brand img {
  width: 112px;
  height: auto;
}

.auth-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid #dce3e5;
  border-top: 4px solid #00a9cc;
  box-shadow: 0 14px 40px rgb(29 39 43 / 8%);
}

.auth-panel h1 {
  margin: 6px 0 10px;
  font-size: 28px;
  letter-spacing: 0;
}

.auth-panel > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: #5d6b70;
  line-height: 1.5;
}

.auth-panel form {
  display: grid;
  gap: 9px;
}

.auth-panel label {
  margin-top: 7px;
  font-weight: 700;
  font-size: 13px;
}

.auth-panel input {
  min-height: 44px;
}

.auth-panel .remember-option {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 8px;
  cursor: pointer;
}

.auth-panel .remember-option input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: #00a9cc;
}

.remember-option span {
  display: grid;
  gap: 2px;
}

.remember-option strong {
  font-size: 13px;
}

.remember-option small {
  color: #5d6b70;
  font-size: 12px;
  font-weight: 400;
}

.auth-panel button {
  min-height: 44px;
  margin-top: 12px;
}

.auth-error {
  margin: 8px 0 0;
  padding: 10px 12px;
  background: #fff1f0;
  border-left: 3px solid #c53d34;
  color: #8a251f;
  font-size: 13px;
}
