.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #555555;
}

.social-login-btn:hover {
  opacity: 0.9;
  color: white;
}

.social-login-icons-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.social-login-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background-color: #555555;
}

.auth-divider {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  margin: auto;
}

.auth-divider:before,
.auth-divider:after {
  position: relative;
  display: inline-block;
  width: 45%;
  height: 1px;
  content: "";
  background-color: #dee0e3;
  margin: auto;
}

.auth-divider:before {
  right: .5em;
  left: unset;
}

[dir=rtl] .auth-divider:before {
  left: .5em;
  right: auto;
}

.social-login-icon-btn:hover {
  opacity: 0.85;
  transform: scale(1.1);
}

.social-login-icon-btn .spinnerIcon {
  font-size: 14px;
}

/* Provider Colors */
.btn-social-google {
  background-color: #db4437;
  color: white;
  border: none;
}

.btn-social-facebook {
  background-color: #1877f2;
  color: white;
  border: none;
}

.btn-social-apple {
  background-color: #000000;
  color: white;
  border: none;
}

.btn-social-twitter {
  background-color: #000000;
  color: white;
  border: none;
}

.btn-social-linkedin {
  background-color: #0077b5;
  color: white;
  border: none;
}

.btn-social-github {
  background-color: #333333;
  color: white;
  border: none;
}

.btn-social-microsoft {
  background-color: #00a4ef;
  color: white;
  border: none;
}