/* OAuth provider buttons (Google + GitHub) */
.oauth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.oauth-divider hr {
  flex: 1;
  border: 0;
  border-top: 1px solid #e5e7eb;
}
.oauth-divider span {
  font-size: 0.8rem;
  color: #9ca3af;
  text-transform: lowercase;
  font-weight: 600;
  white-space: nowrap;
}

.oauth-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-google {
  background: #fff;
  border: 1px solid #d0d0d0;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
}
.btn-google:hover {
  background: #f7f7f7;
}

.btn-github {
  background: #24292f;
  border: 1px solid #24292f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
}
.btn-github:hover {
  background: #1a1e22;
  border-color: #1a1e22;
}

.btn-block {
  width: 100%;
}

.google-g-icon,
.oauth-provider-icon {
  width: 18px;
  height: 18px;
}

.btn-github .oauth-provider-icon {
  filter: invert(1);
}
