:host {
    .first-input,
    .second-input {
        display: flex;
        align-items: baseline;
        position: relative;
    }

    .first-input-error {
        position: absolute;
        color: red;
        font-size: 12px;
        top: 40px;
        left: calc(33.33% - -8px);
    }

    .second-input-error {
        color: red;
        font-size: 12px;
    }

    &.regular {
        label {
            flex: 1;
            display: flex;
        }

        .mat-form-field {
            flex: 2;
            display: flex;
        }
    }

}