@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #11173d;
  font-family: "Montserrat", sans-serif;
  color: #7a7d92;
}

.sign-in {
  padding-bottom: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.sign-in__button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-decoration: underline;
  color: #7a7d92;
  font-size: 1.25rem;
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s;
  transition: opacity 1s ease 0s;
}

.sign-in__button:hover {
  opacity: 0.4;
}

footer {
  padding: 1.25rem;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #191f4b;
}
/*# sourceMappingURL=index.css.map */