@mixin ai-input-group() {
  .ai-input-group {
    display: flex;

    :not(:first-child) .mat-form-field-wrapper {
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
      border-left: none;
    }

    :not(:last-child) .mat-form-field-wrapper {
      border-bottom-right-radius: 0;
      border-top-right-radius: 0;
      border-right: 1px dashed;
    }
  }
}
