.afm-social-login {
  width: 100%;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}

.afm-social-login__buttons {
  display: grid;
  gap: .75rem;
}

.afm-social-login__heading {
  margin: 0 0 1rem;
  color: #212529;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.afm-social-login__button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .65rem 1rem;
  border: 1px solid #747775;
  border-radius: .5rem;
  background: #fff;
  color: #1f1f1f;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.afm-social-login__button:hover,
.afm-social-login__button:focus-visible {
  border-color: #4f5153;
  background: #f8f9fa;
  color: #111;
  box-shadow: 0 0 0 .2rem rgba(25, 135, 84, .12);
}

.afm-social-login__button--facebook {
	border-color: #1468d5;
	background: #1468d5;
	color: #fff;
}

.afm-social-login__button--facebook:hover,
.afm-social-login__button--facebook:focus-visible {
	border-color: #125bbb;
	background: #125bbb;
	color: #fff;
}

.afm-social-login__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.afm-social-login__icon svg {
  width: 100%;
  height: 100%;
}

.afm-social-login__terms {
	margin: 0 0 .75rem;
	color: #6c757d;
	font-size: .8rem;
  line-height: 1.45;
  text-align: center;
}

.afm-social-login__divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1rem 0 0;
  color: #6c757d;
  font-size: .8rem;
  text-align: center;
}

.afm-social-login__divider::before,
.afm-social-login__divider::after {
  content: '';
  height: 1px;
  flex: 1 1 auto;
  background: #dee2e6;
}

.afm-email-register-toggle {
  width: 100%;
  max-width: 34rem;
  margin: -.25rem auto 1.5rem;
}

.afm-social-login__email-toggle {
  display: flex;
  width: 100%;
  min-height: 48px;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .75rem 1rem;
  border: 2px solid var(--bs-primary, #229ac8);
  border-radius: .5rem;
  background: #fff;
  color: #176f91;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.afm-social-login__email-toggle:hover,
.afm-social-login__email-toggle:focus-visible,
.afm-social-login__email-toggle[aria-expanded="true"] {
  border-color: var(--bs-primary, #229ac8);
  background: var(--bs-primary, #229ac8);
  color: #fff;
  box-shadow: 0 0 0 .2rem rgba(34, 154, 200, .18);
}

.afm-social-login__email-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
}

.afm-social-login__email-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.afm-social-login__email-chevron {
  width: .6rem;
  height: .6rem;
  flex: 0 0 .6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.afm-social-login__email-toggle[aria-expanded="true"] .afm-social-login__email-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.afm-social-login--compact {
  margin-bottom: 1rem;
}

.afm-social-login--compact .afm-social-login__terms {
	font-size: .75rem;
}

.afm-social-login--compact .afm-social-login__heading {
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  .afm-social-login__button {
    min-height: 46px;
  }
}
