.termsRow {
  margin-top: 14px;
}

.registerActions {
  margin-top: 12px;
}

.actionsRow {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.actionsRow .button {
  min-width: 180px;
  text-align: center;
}

.registerPriceNote {
  margin-top: 8px;
  color: #666;
  font-size: 13px;
}

.cvrLookupBar {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.cvrLookupField {
  flex: 1 1 260px;
}

.cvrLookupButtonWrap {
  flex: 0 0 auto;
}

.cvrLookupButtonWrap .button {
  min-width: 180px;
}

#cvrLookupStatus {
  min-height: 1.5em;
  margin-top: 8px;
  font-size: 0.95em;
}

#cvrLookupStatus.is-loading {
  color: #7f888f;
}

#cvrLookupStatus.is-success {
  color: #2e7d32;
}

#cvrLookupStatus.is-error {
  color: #c62828;
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.5;
}

@media screen and (max-width: 736px) {
  .actionsRow {
    flex-direction: column;
    align-items: stretch;
  }

  .actionsRow .button {
    width: 100%;
    min-width: 0;
  }

  .cvrLookupBar {
    flex-direction: column;
    align-items: stretch;
  }

  .cvrLookupButtonWrap .button {
    width: 100%;
    min-width: 0;
  }
}