/* Container Externo */
.social-auth-wrapper {
  width: 100%;
  margin: 0 auto 20px auto;
  font-family: 'Roboto', sans-serif, Arial;
}

/* Divisor Visual (Igual aos sites profissionais) */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-soft);
}

.auth-divider span {
  padding: 0 12px;
}

/* Botão Google Centralizado */
.auth-buttons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.google-login-button {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza o conjunto */
  background-color: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: 6px;
  padding: 8px 16px;
  width: 100%; /* Ocupa a largura do container */
  height: 44px;
  text-decoration: none !important;
  transition: background-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.google-login-button:hover {
  background-color: var(--bg-muted);
  border-color: var(--border-primary);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Ícone e Texto juntos */
.google-icon-box {
  display: flex;
  align-items: center;
}

.google-button-text {
  color: var(--text-primary) !important;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap; /* Impede que o texto quebre linha */
}

.auth-buttons p {
	margin-bottom: 0;
}