/* AD24 Social Login — buttons.css */

/* Buton comun — stilizat ca .external-log din temă */
.ad24-social-btn {
  display: block;
  width: 100%;
  padding: 10px 16px;
  margin-bottom: 8px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: opacity .15s, box-shadow .15s;
  box-sizing: border-box;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ad24-social-btn:hover {
  text-decoration: none;
  opacity: .88;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

/* Google */
.ad24-btn-google {
  background: #fff;
  border: 1px solid #dadce0;
  color: #3c4043;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.ad24-btn-google:hover { color: #111; }

/* Facebook */
.ad24-btn-facebook {
  background: #1877F2;
  border: 1px solid #1877F2;
  color: #fff;
}
.ad24-btn-facebook:hover { color: #fff; }

/* SVG icon */
.ad24-btn-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ad24-btn-label { line-height: 1; }

/* Divider "sau" — ca .or din temă */
.ad24-social-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #aaa;
  font-size: 13px;
}
.ad24-social-divider::before,
.ad24-social-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* Wrapper block */
.ad24-social-wrapper {
  margin-bottom: 4px;
}
.ad24-social-btns { display: flex; flex-direction: column; }

/* Eroare */
.ad24-social-error {
  background: #fff0f0;
  border: 1px solid #ffd5d5;
  border-radius: 4px;
  padding: 8px 12px;
  color: #c0392b;
  font-size: 13px;
  margin-bottom: 8px;
}

/* Modul inline (neutilizat momentan) */
.ad24-social-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
}
.ad24-vsep {
  color: #bbb;
  font-size: 12px;
}
