body{
    height: 100vh;
    background: #E7EBF4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container_conteudo{
    min-height: calc(100vh - 136.23px); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: start;
    margin: 1rem;
    gap: 1rem;
}

.titulo_conteudo{
    font-size: 24px;
    color: #222222;
    font-weight: 500;
    word-spacing: 2px;
    margin-bottom: 0.2rem;
}

.div_inputs_perfil{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

.texto_inputs{
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 0.2rem;
}

.inputs_perfil{
    width: 100%;
    padding: 0.6rem;
    box-sizing: border-box;
    border-radius: 4px;
}

.container_inputs_perfil{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.div_btn_perfil{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.btn_salvar_perfil{
    background-color: #1893A7;
    border-radius: 4px;
    width: 100%;
    padding: 0.8rem;
    color: white;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.btn_sair_excluir_perfil{
    background-color: red;
    border-radius: 4px;
    width: 100%;
    padding: 0.8rem;
    color: white;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.circulo_perfil{
    width: 120px; 
    height: 120px; 
    border-radius: 50%; 
    border: 4px solid #ffffff;
    object-fit: cover;
}

#iconeCamera{
    cursor: pointer;
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
}

.div_icone_camera{
    position: relative;
}

.fa-camera{
    position: absolute;
    right: 5px;
    bottom: 5px;
    color: #2b92db;
    font-size: 24px;
}