/* Styles on Base styles > ABInBev SSO Forms */

input.is-disabled[type="submit"][disabled] {
  cursor: not-allowed;
  background-color: #ccc !important;
}

div[role="contentinfo"].messages {
  display: none;
}

form[id*="abinbev-sso"] .sso-overflow-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0.4;
  background-color: #000;

  z-index: 100;
}

form[id*="abinbev-sso"] .sso-overflow-loader .loader {
  content: "";

  position: absolute;
  left: calc(50vw - 25px);
  top: calc(50vh - 25px);

  width: 50px;
  height: 50px;

  border-radius: 50%;
  border-top-color: #fff !important;
  border: 4px solid transparent;

  animation: loading-spinner 1s ease infinite;
}

@keyframes loading-spinner {
  to {
    transform: rotate(1turn);
  }
}
