/**
 * CCM19 reCAPTCHA Placeholder Styles
 */

.ccm19-placeholder {
  display: block !important;
  position: relative !important;
  z-index: 999 !important;
}

.ccm19-placeholder-content {
  padding: 12px 16px !important;
  background: #f5f5f5 !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.ccm19-placeholder-text {
  margin: 0 !important;
  font-size: 13px !important;
  color: #333 !important;
  line-height: 1.4 !important;
  flex: 1 !important;
}

.ccm19-placeholder-button {
  padding: 8px 16px !important;
  background: #0066cc !important;
  color: #fff !important;
  border: none !important;
  border-radius: 3px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: background-color 0.2s ease !important;
}

.ccm19-placeholder-button:hover {
  background: #0052a3 !important;
}

.ccm19-placeholder-button:active {
  background: #003d7a !important;
}

.ccm19-placeholder-button:focus {
  outline: 2px solid #0066cc !important;
  outline-offset: 2px !important;
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
  .ccm19-placeholder-content {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .ccm19-placeholder-button {
    width: 100% !important;
  }
}
