@font-face {
  font-family: "Inter";
  src: url("./inter.ttf") format("truetype");
}
body {
  background-color: #fff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  margin: 0;
}

.content {
    height: 99%;
    width: 324px;
    background-color: #fafafa;
}
.content #spinnerContainer {
  display: none;
  position: absolute;
  background-color: black;
  height: 99%;
  width: 324px;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.content #spinnerContainer .spinner {
  position: relative;
  left: 50%;
  top: 50%;
  animation: rotate 2s linear infinite;
  z-index: 2;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}
.content #spinnerContainer .spinner .path {
  stroke: #fff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.content #header {
  padding: 1.3em;
  padding-top: 84px;
}
.content #header h1 {
  margin: 0.18em 0em;
  font-size: 32px;
  color: #363740;
}
.content #loginForm {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  padding: 0 1.3em;
}
.content #loginForm .text-input {
  border: 0;
  border-bottom: 1px black solid;
  padding: 0.65em 0em;
  background-color: transparent;
  font-size: 0.92em;
  width: 100%;
}
.content #loginForm #loginButton {
  margin-top: 1.5em;
  height: 39px;
  width: 100%;
  border-radius: 0;
  border: 0;
  font-size: 0.92em;
  background-color: #5d6b2b;
  color: #fafafa;
}
.content #loginForm #password-inputs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.content #loginForm #password-inputs #togglePassword {
  width: 10px;
  margin-left: -30px;
  border: 0;
  background-color: transparent;
  padding: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}
.content #loginForm #password-inputs #buttonImage {
  width: 15px;
  height: 15px;
}
.content #loginForm #error {
  display: none;
  font-weight: 500;
  color: red;
}/*# sourceMappingURL=index.css.map */