.primary-button {
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  border: none;
  border-radius: 2px;
  background: #3468d8;
  padding: 15px 0 17px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-button:hover {
  background: #345bb0;
}

.primary-button:disabled {
  cursor: auto;
  background: #3468d8;
  opacity: 0.4;
}

.primary-button > .primary-button-loading {
  display: none;
  height: 14px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.primary-button > .primary-button-loading #dots #dot1 {
  animation: load 1s infinite;
}

.primary-button > .primary-button-loading #dots #dot2 {
  animation: load 1s infinite;
  animation-delay: 0.2s;
}

.primary-button > .primary-button-loading #dots #dot3 {
  animation: load 1s infinite;
  animation-delay: 0.4s;
}

@keyframes load {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.secondary-button {
  padding: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #fff;
  cursor: pointer;
  border-radius: 2px;
  border: 1px solid #aeb0bc;
  color: #122367;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.secondary-button-icon.okta {
  max-height: 15px;
}

.secondary-button:hover {
  border-color: #3468d8;
}

.text-button {
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  border: none;
  gap: 4px;
  color: #3468d8;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  background-color: transparent;
}

.text-button:hover {
  color: #324f90;
}

.link-button-wrapper {
  width: 100%;
  text-decoration: none;
}
