.google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background-color: white;
  color: black;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  margin-top: 12px;
  outline: none;
  border: solid 1.5px;
}

.google-button:focus {
  outline: none;
  box-shadow: none;
}

.google-button i.icon.google {
    width: 25px;
    height: 25px;
    background: url("https://smt-static-assets.s3.us-east-1.amazonaws.com/v3/node-web/icons/google-logo.png") no-repeat center center;
    background-size: contain;
}

.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;

  .hwSpinner {
    animation: spin 1s linear infinite;
  }

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