.b-form-row__title {
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.b-form-row__error {
  padding: 0 6px;
  font-size: 11px;
}

.date-field,
.time-field {
  position: relative;
}
.date-field:before,
.time-field:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.date-field input[type=text],
.time-field input[type=text] {
  padding-left: 75px;
}

.date-field:before {
  width: 25px;
  height: 28px;
  background-image: url(/local/templates/main/img/date.png);
}

.time-field:before {
  width: 25px;
  height: 28px;
  background-image: url(/local/templates/main/img/time.png);
}
.time-field input::invalid {
  border: 1px solid red;
}