.img_perfil{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

main{
    flex: 1;
    overflow: auto;
}

.container{
    padding: 1rem;
}

.container_perfil{
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 1rem;
}

.div_inputs_perfil{
    width: 100%;
}

.texto_perfil{
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.inputs_perfil{
    width: 100%;
    background-color: #f5f5f5;
    color: #242424;
    padding: .15rem .5rem;
    min-height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    line-height: 1.15;
    box-shadow: 0px 10px 20px -18px;
    box-sizing: border-box;
}

.inputs_salvar{
    width: 100%;
    background-color: blue;
    color: #242424;
    padding: .15rem .5rem;
    min-height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    line-height: 1.15;
    box-shadow: 0px 10px 20px -18px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.inputs_excluir{
    width: 100%;
    background-color: red;
    color: #242424;
    padding: .15rem .5rem;
    min-height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    line-height: 1.15;
    box-shadow: 0px 10px 20px -18px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}