<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.iti {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.form-cell {
  grid-column: 1 / -1;
}

@media screen and (min-width: 768px) {
  .form-row {
    gap: 10px;
  }

  .form-cell:first-child {
    grid-column: 1 / 2;
  }
  .form-cell:last-child {
    grid-column: 2 / 3;
  }
}

p.error {
  color: red;
}

.iti__selected-flag {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
</pre></body></html>