@include theme {
    .ms-input {
      display: inline-block;
  
      .ms-input-inner {
        outline: none;
        border: none;
        padding: 9px 16px;
        border-radius: 2px;
        font-size: 16px;
      }
  
      & > button {
        height: 36px;
      }
  
      @include statusMixin(input) {
        border: solid 1px $value;
        background-color: mix($value, white, 10%);
        .ms-input-inner:focus {
          background-color: mix($value, white, 30%);
        }
      }
    }
  }