Вы должны попробовать с Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense
<com.google.android.material.textfield.TextInputLayout
style="@style/customInputLayoutStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<androidx.appcompat.widget.AppCompatEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter your valid phone" />
</com.google.android.material.textfield.TextInputLayout>
Тогда ваш customInputLayoutStyle будет
<style name="customInputLayoutStyle" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense">
<item name="boxStrokeColor">@color/colorPrimary</item>
</style>