form .form-error {
  box-shadow: 0 0 0 1px #e22120;
}

form .shake {
  animation: shake 1s;
}

.error {
  color: #e22120;
}

#appleid-signin {
  height: 32px;
  max-height: 32px;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
}

#appleid-signin div[style] {
  max-width: unset !important;
  width: 100% !important;
}

#g_id_onload {
  display: none;
}

.g-signin2,
.g_id_signin {
  width: auto;
}

.g_id_signin {
  margin-top: 0;
}


.abcRioButtonContentWrapper {
  display: flex;
  justify-content: center;
}

.abcRioButtonContents[style] {
  font-size: 14px !important;
}

.sik__oauth-login {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.sik__loader {
  display: none;
  position: fixed;
  border: 2px solid #ffffff00;
  border-radius: 50%;
  border-top: 2px solid #000;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 0.75s linear infinite;
  /* Safari */
  animation: spin 0.75s linear infinite;

}

.sik-loading-overlay {
  display: block !important;
  position: fixed !important;
  top: 0;
  left: 0;
  height: 100%;
  width: 100% !important;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 10;
}

.sik-loading-overlay--success:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% + 1px);
  left: 50%;
  height: 60px;
  font-size: 1.25em;
  border: solid black;
  border-width: 0 1px 1px 0;
  transform: translate(-50%, calc(-50% - .25em)) rotate(45deg);
  width: 30;
  z-index: 10;
}

.sik-loading-overlay--loading:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 60px;
  margin: auto;
  -webkit-animation: spin 0.75s linear infinite;
  /* Safari */
  animation: spin 0.75s linear infinite;
  border-radius: 100%;
  border-style: solid;
  border-left: solid transparent;
  border-width: 1px;
  width: 60px;
  color: black;
  z-index: 11;
}

.btn--loading {
  color: transparent !important;
}

.btn--loading:before {
  content: "" !important;
  box-sizing: border-box;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50% !important;
  border: 1px solid #ccc;
  border-top-color: #000;
  animation: spin 0.75s linear infinite;
  -webkit-animation: spin 0.75s linear infinite;
  box-shadow: none !important;
  background-image: none !important;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shake {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(3em);
  }

  40% {
    transform: translate(-3em);
  }

  60% {
    transform: translate(3em);
  }

  80% {
    transform: translate(-3em);
  }

  100% {
    transform: translate(0);
  }
}