Below is the code snippet for a md-input-container using angular material design:
<md-input-container>
<input mdInput [placeholder]="'common.password' | translate" type="password" formControlName="password" (change)="onPasswordChange($event.target.value)" required validate-onBlur/>
<md-hint *ngIf="frmLoginInfo.controls.password.pristine" class="s-text-caption s-hint">{{ 'signup.pwdRule' | translate }}</md-hint>
</md-input-container>
Inside this container, there is a div with class (mat-input-wrapper) which has a padding of padding-bottom: 1.296875em.
How can I override this padding style within the container?
Note: Adding a class to the container and setting padding: 0px as important also does not seem to work.