@use '../../colors';
@use '../../breakpoints';

.bz-erro {
    position: relative;
    &::before {
        position: absolute;
        content: "";
        background-color: colors.$pink-100;
        background-image: url(../../assets/img/block-erro-bg.svg);
        background-position: center top;
        background-repeat: repeat;
        background-size: 100% auto;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: -1;
    }
}