.boxCadastro {
    /* background-color: rgb(245, 157, 74); */
    /* background-image: url('https://png.pngtree.com/thumb_back/fh260/background/20240612/pngtree-convenience-store-background-image_15748284.jpg'); */
    background-repeat: no-repeat;
    background-size: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


}

.boxInfoForm {
    color: white;
}


form {
    background-color: white;
    /* box-shadow: 0px 0px 5px 2px gray; */
    /* flex: 1; */
    max-width: 600px;
    width: 100%;
    /* margin: auto; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    /* padding: 10px; */
}

.logoForm {
    height: 100px;
    width: fit-content;
    margin: auto;
}

.boxInput {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.boxInput input {
    padding: 5px;
    outline: none;
    border: 1px solid rgb(7, 7, 7);
    border-radius: 5px;
}

.boxInput input:hover,
.boxInput input:focus {
    outline: 2px solid rgb(242, 99, 40);
    outline-offset: -1px;
}

.btnNext {
    background-color: rgb(242, 99, 40);
    color: white;
    padding: 10px;
    border-radius: 5px;
    border: 0px;
    font-weight: bolder;
    font-size: 1.1rem;
}

.etapas {
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10%;
}

.etapas .etapa {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    font-weight: bolder;
}

.etapaAtual {
    background-color: rgb(242, 99, 40) !important;
}

.boxScrollForm {

    height: 100%;
    display: flex;
    width: 300%;
}

.divForm {
    width: calc(100%/3);
    height: 100%;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    /* border: 1px solid; */

}


@media screen and (max-width: 650px) {

    .boxCadastro {
        height: auto;
    }

    form {
        border-radius: 0px;
        padding-block: 20px;
        box-shadow: none;
    }

}