/* Custom styles */
:root { --bs-google: #DB4437; }

.btn-google {
  color: #fff;
  background-color: var(--bs-google);
  border-color: var(--bs-google);
}
.btn-google:hover {
  color: #fff;
  background-color: #c23b31;
  border-color: #b0352c;
}
.btn-google:focus {
  color: #fff;
  background-color: #c23b31;
  border-color: #b0352c;
  box-shadow: 0 0 0 .25rem rgba(219,68,55,.25);
}
.btn-google:active {
  color: #fff;
  background-color: #b0352c;
  border-color: #9e2f28;
}
.btn-google .bi-google { margin-right: .5rem; }

/* Authentication divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--bs-gray-600);
  font-size: .875rem;
  margin: .5rem 0 1rem;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--bs-gray-300);
}
.auth-divider span { white-space: nowrap; }
