/* The Tech Pad — social login buttons on the auth card.
   Matches the bundle's auth-card field styling:
   inputs are white with #d8e1dc borders and 10px radius;
   the card is light; the primary button is dark green. */

.ttp-social-block {
  display: block;
}

.ttp-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.05s ease;
}

.ttp-social-btn:hover { filter: brightness(0.97); }
.ttp-social-btn:active { transform: scale(0.985); }
.ttp-social-btn:focus-visible { outline: 2px solid #28a977; outline-offset: 2px; }

.ttp-social-btn svg { flex: 0 0 auto; }

.ttp-google {
  background: #fff;
  color: #1f2937;
  border: 1px solid #d8e1dc;
  box-shadow: 0 1px 2px rgba(16, 42, 34, 0.05);
}

.ttp-facebook {
  background: #1877f2;
  color: #fff;
  border: 1px solid #1877f2;
}

.ttp-social-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 18px;
  color: #687770;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ttp-social-divider::before,
.ttp-social-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d8e1dc;
}
