/* =========================================================
   BH Social Login — Modern button styles
   ========================================================= */

.bh-social-login {
  margin-top: 24px;
}

/* ---- Divider ---- */
.bh-social-login__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #8a8a8a;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bh-social-login__divider::before,
.bh-social-login__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* ---- Button group ---- */
.bh-social-login__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Base button ---- */
.bh-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
  border: 1px solid transparent;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
}

.bh-social-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.bh-social-btn:active {
  transform: translateY(0);
}

.bh-social-btn__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bh-social-btn__label {
  flex: 1;
  text-align: center;
}

/* ---- Google button ---- */
.bh-social-btn--google {
  background: #ffffff;
  color: #3c4043;
  border-color: #dadce0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.bh-social-btn--google:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: #3c4043;
}

/* ---- Apple button ---- */
.bh-social-btn--apple {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.bh-social-btn--apple:hover {
  background: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

/* ---- Error message ---- */
.bh-social-login__error {
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
}

/* ---- Responsive ---- */
@media (min-width: 576px) {
  .bh-social-login__buttons {
    flex-direction: row;
  }
}
