/**
 * D'craft Social Auth — 로그인 버튼 스타일
 *
 * 색상은 각 provider 의 button_colors() 가 인라인 커스텀 프로퍼티로 넘겨준다.
 *   --dcraft-social-auth-bg / --dcraft-social-auth-fg / --dcraft-social-auth-border
 */

.dcraft-social-auth {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.dcraft-social-auth--inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.dcraft-social-auth__heading {
  margin: 0 0 4px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

.dcraft-social-auth__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  width: 100%;
  min-height: 45px;
  padding: 0 16px;
  /* 흰색 계열 버튼(구글)만 테두리를 갖는다. 나머지는 transparent 라 두께만 차지한다. */
  border: 1px solid var(--dcraft-social-auth-border, transparent);
  border-radius: 6px;
  background: var(--dcraft-social-auth-bg, #4b5563);
  color: var(--dcraft-social-auth-fg, #ffffff);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.dcraft-social-auth--inline .dcraft-social-auth__button {
  width: auto;
}

.dcraft-social-auth__button:hover,
.dcraft-social-auth__button:focus {
  color: var(--dcraft-social-auth-fg, #ffffff);
  text-decoration: none;
  filter: brightness(0.95);
}

.dcraft-social-auth__button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.dcraft-social-auth__button:active {
  filter: brightness(0.9);
}

.dcraft-social-auth__icon {
  flex: none;
  width: 20px;
  height: 20px;
}

.dcraft-social-auth__label {
  white-space: nowrap;
}

.dcraft-social-auth__error {
  margin-bottom: 16px;
}

/* wp-login.php 폼 안에서의 여백 보정 */
#loginform .dcraft-social-auth {
  margin: 20px 0 8px;
}
