main {
    background-color: rgb(210, 210, 216);
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;

    padding: 20px;
}

.sessao {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;

    border-top-left-radius: 0;
    border-top-right-radius: 0;

    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;

    margin-bottom: 200px;
}

.input-group label{
    margin-bottom: 5px;
}

.box-img-perfil {
    width: 150px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.161);
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #888;


}


.img-logo-empresa {
    width: 100%;
    height: 100%;
    border-radius: 50%;

}

.icone-foto-logo {
    font-size: 60px;
    stroke: 10px;
    border-radius: 50%;
}

h1 {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 30px;
}


.input-group {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.081);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.input-group input,
.input-group textarea {
    background-color: transparent;
    border: none;
}


.cabecalho-sessao {
    width: 100%;
    background-color: white;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    border-top-left-radius: 7;
    border-top-right-radius: 7;

    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.button-continuar {
    background-color: rgb(67, 86, 157);
    color: whitesmoke;
    padding: 10px;
    border-radius: 10px;
    border: none;
}
.cabecalho-sessao i {
    
    font-size: 18px;
}

.button-add-tag{
    padding: 7px 15px;
    width: auto;
    align-self: flex-start;
    border-radius: 5px;
    border: none;
    background-color: rgb(90, 155, 155);

}