#bg-registration {
    background-image: url('/storage/cx/images/registration.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    position: relative;
    color: white;
}

#bg-registration::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

#bg-registration > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .w-50{
        width: 100% !important;
    }

    .p-custom {
        padding: 1.5rem 1rem !important;
    }

    #bg-registration {
        min-height: 300px;
    }

    #bg-registration::before {
        content: "";
        position: absolute;
        inset: 0;
        background: none !important;
    }
}