.captcha-block {
  margin: 15px 0 18px;
}

.captcha-block > label {
  display: block;
  margin: 0 0 7px;
  color: #3c2f2f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(155px, 1fr) minmax(100px, .65fr) 44px;
  gap: 8px;
  align-items: stretch;
}

.captcha-question {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(73, 52, 42, .2);
  background: #f4eddf;
  color: #3c2f2f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
}

.booking-dialog .captcha-row input {
  min-width: 0;
  height: 46px;
  margin: 0;
  text-align: center;
}

.captcha-refresh {
  width: 44px;
  min-height: 46px;
  border: 1px solid #a8864b;
  background: #a8864b;
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.captcha-refresh:hover {
  background: #bb9859;
}

.captcha-refresh:disabled,
.captcha-row input:disabled {
  cursor: wait;
  opacity: .58;
}

@media (max-width: 520px) {
  .captcha-row {
    grid-template-columns: 1fr 90px 44px;
  }

  .captcha-question {
    padding: 10px;
    font-size: 12px;
  }
}
