/* ============================================
   BUTTON — Simplest correct approach
   ============================================ */

/* Button wrapper alignment */
.b1-1-inp-fld-wrp {
  display: flex !important;
  justify-content: flex-start !important;
}

.bf-button {
  all: unset !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.7) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  position: relative !important;
  transition: color 0.35s ease !important;
  border-bottom: none !important;

  /* ── CHANGE PADDING HERE ONLY ──────────────
     TOP     RIGHT   BOTTOM   LEFT             */
  padding: 30px     0px     10px     0px !important;
  /* ─────────────────────────────────────────── */
}

/* Hide ::before and ::after completely */
.bf-button::before,
.bf-button::after {
  display: none !important;
  content: none !important;
}

/* Hide BitForm's own text */
.bf-button > span:not(.bf-spinner):not(.btn-line):not(.btn-arrow) {
  font-size: 0 !important;
  display: none !important;
}

/* Underline span — matches text width only */
.btn-line {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 1px !important;
  width: calc(100% - 28px) !important;
  background: rgba(255,255,255,0.35) !important;
  transition: width 0.35s ease, background-color 0.35s ease !important;
}

/* On hover — extends to full width including arrow */
.bf-button:hover .btn-line {
  width: 100% !important;
  background: rgba(255,255,255,0.9) !important;
}

/* Arrow span injected by JS */
.btn-arrow {
  display: inline-flex !important;
  align-items: center !important;
  opacity: 0 !important;
  transform: translateX(-6px) !important;
  transition: opacity 0.35s ease, transform 0.35s ease !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

/* Hover */
.bf-button:hover {
  color: #ffffff !important;
  background: transparent !important;
}

.bf-button:hover .btn-line {
  background: rgba(255,255,255,0.9) !important;
}

.bf-button:hover .btn-arrow {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.bBP1:hover {
  border-radius: 0 !important;
  background: transparent !important;
}

.b1-1-fld-wrp {
  padding-top: 24px !important;
}
textarea.bf-field {
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 0 !important;
  resize: none !important;
  min-height: 110px !important;
}

/* Remove focus outline on all fields */
.bf-field:focus,
.bf-field:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

textarea:focus,
textarea:focus-visible,
input:focus,
input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.bf-err-txt,
[class*="err-txt"] {
  color: rgba(255, 80, 80, 0.65) !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  font-family: inherit !important;
}
/* Kill browser autofill background */
.bf-field:-webkit-autofill,
.bf-field:-webkit-autofill:hover,
.bf-field:-webkit-autofill:focus,
.bf-field:-webkit-autofill:active,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #000000 inset !important;
  box-shadow: 0 0 0 1000px #000000 inset !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.88) !important;
  background-color: #000000 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  caret-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s !important;
}