.gv-bc-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 32px;
  font-family: system-ui, -apple-system, sans-serif;
  text-align: center;
}

.gv-bc-title {
  font-size: 26px;
  font-weight: 800;
  color: #2b2560;
  margin: 0 0 8px;
}

.gv-bc-subtitle {
  font-size: 14px;
  color: #8a8794;
  margin: 0 0 28px;
}

.gv-bc-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gv-bc-input {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 20px;
  border: 1px solid #e6e3f0;
  border-radius: 999px;
  font-size: 15px;
  color: #2b2560;
  background: #fcf9f2;
  outline: none;
  transition: border-color 0.15s ease;
}
.gv-bc-input::placeholder {
  color: #a29fc9;
}
.gv-bc-input:focus {
  border-color: #c9962c;
}

.gv-bc-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 0;
  padding: 14px 32px;
  background: #2b2560;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.gv-bc-button:hover {
  background: #211c4a;
}
.gv-bc-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.gv-bc-spinner {
  display: none;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #c9962c;
  border-radius: 50%;
  animation: gv-bc-spin 0.7s linear infinite;
}
.gv-bc-button.is-loading .gv-bc-spinner {
  display: inline-block;
}
.gv-bc-button.is-loading .gv-bc-btn-text {
  opacity: 0.7;
}

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

.gv-bc-result {
  margin-top: 20px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 0;
  border-radius: 12px;
  transition: all 0.15s ease;
}
.gv-bc-result:empty {
  margin-top: 0;
}
.gv-bc-result.is-success {
  padding: 14px 16px;
  margin-top: 20px;
  background: #fcf9f2;
  color: #7a5d16;
  border: 1px solid #c9962c;
}
.gv-bc-result.is-error {
  padding: 14px 16px;
  margin-top: 20px;
  background: #fdeeee;
  color: #b3261e;
  border: 1px solid #f6c9c7;
}

.gv-bc-divider {
  margin: 28px 0 20px;
  border: none;
  border-top: 1px solid #e6e3f0;
}

.gv-bc-footer-text {
  font-size: 13px;
  color: #8a8794;
  margin: 0 0 4px;
}

.gv-bc-contact {
  font-size: 14px;
  font-weight: 700;
  color: #2b2560;
  text-decoration: none;
}
.gv-bc-contact:hover {
  color: #c9962c;
  text-decoration: underline;
}

/* RTL support: auto-switches when the site language is Arabic */
html[dir="rtl"] .gv-bc-card,
body.rtl .gv-bc-card {
  direction: rtl;
}
