body, html {
  font-family: Roboto,"Helvetica Neue", sans-serif;
  color: #424242;
}


#starting {
  display:none;
}

#main {
  visibility: visible !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

#main .loader {
  height: 80px;
  width: 80px;
  animation: rotation 1s infinite linear;
}

#main #loginStatus {
  font-size: 20px;
  font-weight: 400;
  margin-top: 16px;
}

#error {
  display: none;
  max-width: 607px;
}

#error.left .title, #error.left .ref {
  text-align: left; /* Design esqueceu de centralizar no figma? */
}

#error .icon {
  height: 100px;
  width: 100px;
  margin-bottom: 30px;
}

#error div {
  margin-bottom: 24px;
}

#error .title {
  font-size: 34px;
  font-weight: 700;
}

#error .subtitle {
  font-size: 16px;
  font-weight: 500;
}

#error .ref {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 96px;
}

.btn {
  cursor: pointer;
  background: #007DFF;
  border-radius: 4px;
  padding: 8px 22px;
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  /* identical to box height, or 173% */

  letter-spacing: 0.46px;
  text-transform: uppercase;
  text-decoration: none;

  /* primary / contrastText */

  color: #FFFFFF;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

