:root {
  background: #f4f7fb;
  color: #182230;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

button,
input {
  font: inherit;
}

button {
  background: #1f6feb;
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  min-height: 48px;
  padding: 0 18px;
}

button:hover {
  background: #185abc;
}

input {
  border: 1px solid #c9d5e7;
  border-radius: 8px;
  color: #182230;
  font-weight: 700;
  min-height: 48px;
  padding: 0 14px;
  width: 100%;
}

label {
  color: #4b5565;
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

h1,
p {
  margin: 0;
}

.authPage {
  align-items: center;
  display: grid;
  justify-items: center;
  padding: 24px;
}

.authPanel {
  background: #fff;
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgb(24 34 48 / 10%);
  max-width: 420px;
  padding: 32px;
  width: 100%;
}

.authPanel h1 {
  font-size: 24px;
  margin: 8px 0 24px;
}

.stack {
  display: grid;
  gap: 18px;
}

.eyebrow {
  color: #1f6feb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.errorText {
  color: #c0362c;
  font-size: 14px;
  font-weight: 800;
  min-height: 20px;
}
