.radio-field {
  position: absolute;
  z-index: -1;
  opacity: 0; }
  .radio-field + label {
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    min-width: 68px;
    padding: 10px 12px;
    user-select: none;
    cursor: pointer;
    display: block;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    justify-content: center; }
  .radio-field:checked + label {
    color: #fff;
    background: #3171f7; }
  .radio-field:disabled + label {
    opacity: 0.4; }

.date-field {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer; }

.input-field {
  font-size: 16px;
  line-height: 24px;
  color: #161913;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid rgba(208, 209, 211, 0.44);
  border-radius: 10px; }

.select-field {
  font-size: 16px;
  line-height: 24px;
  color: #161913;
  width: 100%;
  height: 48px;
  padding: 0 12px;
  background: #fff;
  cursor: pointer;
  border: 1px solid rgba(208, 209, 211, 0.44);
  border-radius: 10px; }

.textarea-field {
  font-size: 16px;
  line-height: 24px;
  color: #161913;
  width: 100%;
  min-height: 80px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(208, 209, 211, 0.44);
  border-radius: 10px;
  resize: none; }

.checkbox-field {
  position: absolute;
  z-index: -1;
  opacity: 0; }
  .checkbox-field + label {
    font-size: 14px;
    line-height: 22px;
    color: #161913;
    user-select: none;
    cursor: pointer;
    display: flex;
    column-gap: 10px; }
    .checkbox-field + label:before {
      content: '';
      width: 17px;
      height: 17px;
      margin: 2px 0;
      background: url(/images/checkbox.svg) no-repeat center top/17px auto;
      flex-shrink: 0; }
  .checkbox-field:checked + label:before {
    background-position: bottom; }
  .checkbox-field:disabled + label {
    opacity: 0.4; }
  .checkbox-field--grey + label:before {
    background: url(/images/checkbox_grey.svg) no-repeat center top/17px auto; }

.has-error .input-field {
  border: 1px solid red; }
