#frmSendMailForm .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

#frmSendMailForm .btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5); /* 기본 링 */
  border-top-color: transparent; /* 위쪽 투명 → 반원 느낌 */
  border-right-color: transparent; /* 오른쪽 투명 → 더 얇게 */
  background: transparent;
  display: none;
  animation: btn-spin 0.6s linear infinite;
}

#frmSendMailForm .button.is-loading .btn-spinner {
  display: inline-block;
}

#frmSendMailForm .button.is-loading {
  opacity: 0.8;
  cursor: default;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

#frmSendMailForm .recaptcha-notice {
  margin-top: 8px; /* 위 간격 살짝 */
  margin-bottom: 8px; /* 버튼과도 살짝 간격 */
  font-size: 12px; /* 글자 조금 작게 */
  color: #888; /* 너무 튀지 않게 연한 색 */
  text-align: left; /* 문구를 오른쪽에 붙이기 */
}

/* 링크도 같이 조금 작고 얌전하게 */
#frmSendMailForm .recaptcha-notice a {
  font-size: 12px;
  color: #888;
  text-decoration: underline;
}

.grecaptcha-badge {
  visibility: hidden; /* display:none 대신 visibility 권장 */
}
