body {
  display: flex;
  flex-direction: column;
  background-color: var(--rt-color-grey-100) !important;
  min-height: 100vh;
}

.rt-login-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-block: 2em;
}

.rt-loginbox {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: min(90%, 500px);
  padding: 3em;
  margin-inline: auto;
}
.rt-loginbox__text {
  padding: 1em;
  background-color: var(--rt-color-grey-100);
  text-align: left;
}
.rt-loginbox__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--rt-color-white);
}
.rt-loginbox__form .rt-main-logo {
  align-self: center;
  margin-bottom: 2em;
}
.rt-loginbox__form .rt-main-logo img {
  width: 200px;
  height: 30px;
}
.rt-loginbox__form a {
  display: block;
  margin-left: auto;
}
.rt-loginbox__fields {
  display: flex;
  flex-direction: column;
  gap: 2em;
  text-align: center;
}
.rt-loginbox__fields .rt-google {
  max-width: 250px;
  align-self: center;
}

.rt-reset-password__link {
  margin-top: 1em;
}

.rt-powered-by {
  margin-top: auto;
  text-align: center;
}

.rt-loginbox,
.rt-powered-by {
  background-color: var(--rt-color-white);
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(-10px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.shake {
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/*# sourceMappingURL=login.css.map */
