#hero-cadastro {
    background-image: url("/images/pages/cadastro/portal-maion-imoveis-cadastro.webp");
    background-position: center;
}

.user-register-card {
    height: 400px;
    min-height: 180px;
    display: flex;
    align-items: center;
    border-radius: 5px 50px 5px 50px;
    background: transparent;
    box-shadow: -12px 15px 7px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.75s ease-in-out;
}

.background-overlay-client {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url("/images/pages/cadastro/portal-maion-imoveis-cadastro-cliente.jpeg");
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.background-overlay-agent {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url("/images/pages/cadastro/portal-maion-imoveis-cadastro-corretor.jpeg");
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.background-overlay-realestate {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url("/images/pages/cadastro/portal-maion-imoveis-cadastro-imobiliaria.jpeg");
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
}
.profile-image-wrapper img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.profile-image-wrapper .change-image-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.profile-image-wrapper:hover .change-image-btn {
    opacity: 1;
}

