/* T28 - Leonardo Chavez: Estilos para Social Login y Auth Avanzado */

.social-login {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  border: 1px solid transparent;
}

.btn-social:hover {
  transform: translateY(-1px);
}

.btn-google {
  background-color: white;
  color: #757575;
  border-color: #dadce0;
}

.btn-google:hover {
  background-color: #f8f9fa;
  border-color: #d2e3fc;
}

.btn-facebook {
  background-color: #1877f2;
  color: white;
}

.btn-facebook:hover {
  background-color: #166fe5;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--color-gray-600);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--color-gray-300);
}

.auth-divider span {
  padding: 0 1rem;
}

/* Estilos para enlaces legales */
.form__checkbox a {
  color: var(--color-primary);
  text-decoration: none;
}

.form__checkbox a:hover {
  text-decoration: underline;
}
