@font-face {
  font-family: TeltonikaBody;
  src: url('/sign-in/inter.ttf') format('truetype');
  font-display: swap;
}
:root {
  color-scheme: light;
  font-family: TeltonikaBody, Arial, sans-serif;
  color: #001a77;
  background: #f7f9fb;
}
* {
  box-sizing: border-box;
}
body {
  min-height: 100svh;
  margin: 0;
  padding: 24px;
  display: grid;
  place-items: center;
}
.sign-in {
  width: min(100%, 432px);
  padding: 44px 36px 36px;
  background: #fff;
  border: 1px solid #e1e6ef;
  border-radius: 22px;
  box-shadow: 0 14px 48px -24px #001a7724;
}
.wordmark {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  margin: 0 auto 36px;
  color: #001a77;
}
mask {
  mask-type: alpha;
}
form {
  display: grid;
  gap: 14px;
}
input,
button {
  width: 100%;
  min-height: 52px;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
}
input {
  padding: 0 16px;
  background: #fff;
  border: 1px solid #d8dfeb;
  color: #111729;
  outline: none;
  transition:
    border-color 150ms,
    box-shadow 150ms;
}
input::placeholder {
  color: #6c7890;
  opacity: 1;
}
input:focus {
  border-color: #001a77;
  box-shadow: 0 0 0 3px #001a7710;
}
button {
  margin-top: 6px;
  padding: 14px 20px;
  color: #fff;
  background: #001a77;
  border: 1px solid #001a77;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 150ms,
    box-shadow 150ms;
}
button:hover {
  background: #00145d;
}
button:focus-visible {
  outline: 3px solid #001a7738;
  outline-offset: 3px;
}
button:disabled {
  opacity: 0.65;
  cursor: wait;
}
#sign-in-error {
  margin: 0;
  color: #a12b3b;
  font-size: 13px;
  line-height: 1.5;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 480px) {
  body {
    padding: 20px;
  }
  .sign-in {
    padding: 36px 26px 28px;
    border-radius: 18px;
  }
  .wordmark {
    margin-bottom: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  input,
  button {
    transition: none;
  }
}
