'How to disable input outline in angular material

I use angular material mat-form-field and matInput. But input has this outline enter image description here enter image description here. How can i remove it?

<mat-form-field appearance="outline" class="form__item">
            <input
                matInput
                name="autocomplete"
                id="autocomplete"
                type="text"
                formControlName="city"
                placeholder="Start typing ..."
            />
        </mat-form-field>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source