/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@keyframes infinite-spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.approvid-wp-form__header {
  text-align: center;
  margin-bottom: 1em;
}
.approvid-wp-form__qr-code {
  margin: 0 auto;
  display: block;
}
.approvid-wp-form__status {
  margin-top: 1em;
  margin-bottom: 1em;
  text-align: center;
}
.approvid-wp-form__status-message {
  display: block;
  margin-top: 0.5em;
}
.approvid-wp-form__description {
  text-align: center;
  display: block;
}

.spinner {
  margin: 0 auto;
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  background: #808080;
  animation: infinite-spinning 1.08s linear infinite;
}
.spinner:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  margin-left: -0.25rem;
  background: #fff;
}

#login {
  transition: width ease-in-out 0.2s;
}

.login-active #login {
  width: 500px;
}

#approvid-login {
  border: none;
  min-height: 50px;
  width: auto;
  cursor: pointer;
  background-color: transparent;
}

.approvid-mobile {
  margin-bottom: 1rem;
  text-align: center;
}
.approvid-mobile div + div {
  margin-top: 1rem;
}
.approvid-mobile__login-button {
  float: none !important;
}

@media screen and (max-width: 960px) {
  .approvid-wp-form__status-container {
    display: none;
  }
  .approvid-wp-form__status-container:target {
    display: block;
  }

  .approvid-mobile {
    display: block;
  }
}
.approvid-error {
  background-color: #d63031;
  color: white;
  padding: 1em;
  border-radius: 3px;
}
.approvid-error:empty {
  display: none;
}

/*# sourceMappingURL=approvid-auth-login.css.map */
