@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf")
    format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
}

:root {
  color-scheme: light dark;
}

.dark {
  display: none;
}

body {
  height: 100dvh;
}

#page-container {
  width: 100dvw;
  height: 100%;
  display: grid;
  place-items: center;
}

#background-container {
  background-image: url("/assets/images/bg.avif");
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -999;
  background-size: cover;
  background-position: center;
}

#login-form-modal {
  font-family: "Inter";
  color: light-dark(#5e5e5e, #e8e8e8);
  background-color: light-dark(
    rgba(255, 255, 255, 0.9),
    rgba(40, 40, 40, 0.85)
  );
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  min-width: 400px;
}

#microsoft-btn {
  min-width: 215px;
}


.button {
  display: inline-flex;
  width: 215px;
  height: 41px;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: light-dark(#fff, #2F2F2F);
  margin: 12px;
  border: solid 1px #8C8C8C;
  color: light-dark(#5E5E5E, #FFFFFF);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  .dark {
    display: block;
  }

  .light {
    display: none;
  }

  #background-container {
    filter: brightness(0.4);
  }

  .button {
    border: none;
  }
}