/* Creates a wrapper for the currency input */
.gbp-currency-wrapper {
  position: relative;
  display: block; /* Ensures it takes up the full width */
}

/* Styles and positions the '£' symbol */
.gbp-currency-wrapper .gbp-symbol {
  position: absolute;
  top: 53%;
  left: 12px; /* Adjust this value to set horizontal position */
  transform: translateY(-50%);
  font-size: 1em; /* Tries to match the input's font size */
  font-weight: 400;
  color: #838383; /* Adjust the color to match your site */
  pointer-events: none; /* Lets you click 'through' the symbol */
  z-index: 4;
}

/* Adds padding to the input field to make space for the symbol */
.gbp-currency-wrapper #cf_18_custom-payment-amount {
  padding-left: 30px !important; /* Adjust to be wider than the symbol's position */
}

.codictsform .recaptcha {
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

