.fundo_tela {
    background-color: var(--cor_fundo_tela);
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: var(--font-family-montserrat);
    overflow: hidden;
    display: flex;  
    align-items: center; 
    justify-content: center; 
}

.container_total {
    display: flex;
    justify-content: space-between;
    height: 100vh;
    width: 100vw;
}

.box_cadastro {
    width: 40vw;
    height: 80vh;
    margin: auto auto auto auto;
    background-color: var(--cor_branca);
    border-radius: 1vw;
    box-sizing: border-box;
    position: relative;
}



.btn_fechar_principal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    cursor: pointer;
    padding-top:0.5em;
    padding-right:0.5em;
}

    .btn_fechar_principal i {
        color: #aaaaaa;
        font-size: 1.5em;
    }


.btn_fechar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    cursor: pointer;
}

    .btn_fechar i {
        color: #aaaaaa;
        font-size: 1.5em;
    }

.texto_header {
    text-align: center;
    font-family: var(--font-family-koho);
    color: var(--cor_cinza_escura);
    font-weight: bold;
    font-size: 1.6em;
    margin: auto;
    padding: 1vw 0;
    border-bottom: 0.1vw solid var(--cor_cinza_clara);
}


.scroll_seletor {
    max-height: calc(55vh - 2.5vw);
    overflow: hidden;
    overflow-y: auto;
    margin-top: 0.5vw;
}

.scroll_padrao {
    max-height: calc(70vh - 2.5vw);
    overflow: hidden;
    overflow-y: auto;
    margin-top: 0.5vw;
}

/* ************************Responsividade******************** */
@media only screen and (max-width: 1024px) {
    .box_cadastro {
        width: 45vw;
        height: 90vh;
        margin: auto;
    }


    .texto_header {
        padding: 2.5vw 0;
    }

    .scroll_seletor {
        max-height: calc(50vh - 2.5vw);
    }

    .scroll_padrao {
        max-height: calc(70vh - 2.5vw);
    }

    .box_contorno {
        width: 70vw;
        height: 80vh;
    }
}

@media only screen and (max-width: 768px) {
    .box_cadastro {
        width: 45vw;
        height: 90vh;
        margin: auto;
    }


    .texto_header {
        padding: 3vw 0;
    }

    .scroll_seletor {
        max-height: calc(35vh - 2.5vw);
    }

    .scroll_padrao {
        max-height: calc(70vh - 2.5vw);
    }

    .box_contorno {
        width: 80vw;
        height: 80vh;
    }
}

@media only screen and (max-width: 480px) {
    .box_cadastro {
        width: 100vw;
        height: 100vh;
        margin: auto;
        padding: 0 4vw;
    }

    .texto_header {
        padding: 5vw 0;
    }

    .scroll_seletor {
        max-height: calc(65vh - 2.5vw);
    }

    .scroll_padrao {
        max-height: calc(80vh - 2.5vw);
    }

    .box_contorno {
        width: 100vw;
        height: 100vh;
    }
    .btn_fechar_principal {
        padding-top: 0.5em;
        padding-right: 0.0em;
    }

}
