@media all {
  ._unified-form .row::before,
  ._unified-form .row::after {
    content: '';
    display: table;
  }
  ._unified-form .row::after {
    clear: both;
  }
  ._unified-form .row .title {
    display: block;
    margin-bottom: 0.65em;
  }
  ._unified-form .row + .row {
    margin-top: 1.5em;
  }
  ._unified-form .row_col:not(.auto) {
    float: left;
  }
  ._unified-form .row_col.auto {
    display: inline-block;
  }
  ._unified-form .spaces {
    margin-right: 1em;
  }
  ._unified-form textarea {
    width: 100%;
    height: 8em;
    transition: border-color cubic-bezier(0.2, 0.01, 0.45, 1) 0.4s;
  }
  ._unified-form textarea:focus {
    border-color: #5B6279;
  }
  ._unified-form input,
  ._unified-form select,
  ._unified-form textarea {
    box-sizing: border-box;
    padding: 0.75em 1.5em;
    border: 1px solid currentColor;
    border-radius: 1.5em;
    color: inherit;
  }
  ._unified-form input:not([type="radio"]):not([type="checkbox"]):not([type="date"]) {
    width: 100%;
  }
  ._unified-form input:not([type="radio"]):not([type="checkbox"]) {
    box-sizing: border-box;
    margin-bottom: -3px;
    transition: border-bottom-color cubic-bezier(0.2, 0.01, 0.45, 1) 0.4s;
  }
  ._unified-form input:not([type="radio"]):not([type="checkbox"]):focus {
    border-bottom-color: #5B6279;
  }
  ._unified-form input[type="radio"],
  ._unified-form input[type="checkbox"] {
    margin-right: 0.5em;
    vertical-align: middle;
  }
  select {
    width: 100%;
  }
  .submit {
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 850px) {
  ._unified-form .columns {
    display: flex;
    justify-content: space-between;
  }
  ._unified-form .row .row_col:first-child {
    float: left;
  }
  ._unified-form .row .row_col:nth-child(2) {
    float: right;
  }
}
@media (min-width: 1400px) {
  ._unified-form .columns .column {
    width: calc(50% - 40px);
  }
  ._unified-form .row_col {
    width: calc(50% - 20px);
  }
  ._unified-form .submit {
    font-size: 16px;
  }
}
@media (min-width: 850px) and (max-width: 1399px) {
  ._unified-form .columns .column {
    width: calc(50% - 25px);
  }
  ._unified-form .row_col {
    width: calc(50% - 10px);
  }
  ._unified-form .submit {
    font-size: 14px;
  }
}
@media (max-width: 849px) {
  ._unified-form .column + .column {
    margin-top: 40px;
  }
  ._unified-form .row .row_col {
    width: 50%;
  }
  ._unified-form .row .row_col.mobile-full {
    width: 100%;
  }
  ._unified-form .row .row_col.mobile-full + .mobile-full {
    margin-top: 1.5em;
  }
  ._unified-form input[type="radio"] + label,
  ._unified-form input[type="checkbox"] + label {
    font-size: 0.9em;
  }
}
