.field-row,
.button-row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.button-row{
  justify-content: center;
}

.field-row .field-block{
  width: 100%;
}

.field-row .field-block.field-half{
  width: 48%;
  margin-bottom: 1rem;
}

.field-row .field-block  input[type="text"].errorInput,
.field-row .field-block  input[type="email"].errorInput,
.field-row .field-block  input[type="tel"].errorInput{
  border-color: red !important;
}
.alertMessage,
.colorRed700{
  color: red !important;
}

.button-row .customBtn{
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  min-height: 2.5rem;
  transition: 0.3s background-color linear;
  cursor: pointer;
  margin-top: 1rem;
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
  font-family: Barlow;
  border-radius: 15px;
  font-weight: 700;
}

.button-row .customBtn:hover{
  background: gray;
}