    .formulario {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        gap: 30px;
        align-items: center;

        
        
    }

    /* .formulario .collection {
        border: 1px solid red;
    } */


    .formulario > a {
        font-size: small;
        color: red;
    }

    .formulario form {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .formulario form .linha {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .formulario form .linha .coluna {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .formulario form .linha .coluna select,
    .formulario form .linha .coluna input {
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 10px;
        outline: none;
    }

    .formulario form button {
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        margin-top: 20px;
    }



/*  administrar.html */    

.administrar {
    position: relative;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: auto;
}

.rodape-padrao {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.rodape-padrao button {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    font-size: 13px;
}

.administrar .container_retorno {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 10px;
    display: none;
    /* opacity: 0;
    transition: display 0.5s allow-discrete, opacity 0.5s; */

}

.administrar .container_retorno.ativo {
    display: block;
    /* opacity: 1; */
}

.administrar .container_retorno > div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    padding: 10px;
    display: none;
    /* opacity: 0;
    transition: display 0.5s allow-discrete, opacity 0.5s; */

}

.administrar .container_retorno > div.ativo {
    display: block;
    /* opacity: 1; */
}

.pergunta-lista {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.pergunta-lista .perguntas {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
}

.pergunta-lista .perguntas .pergunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pergunta-lista .perguntas .pergunta.texto {
    flex-direction: column;
}

.pergunta-lista .perguntas .pergunta.texto .descricao {
    display: block;
    width: 100%;
}

.pergunta-lista .perguntas .pergunta.texto .resposta {
    width: 100%;
}

.pergunta-btn-troca {
    display: flex;
    align-items: center;
    justify-content:  end;
}

.pergunta-btn-troca button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 25px;
    background: none;
    border: none;
}

.btn-enviar-participacao {
    padding: 10px;
    border-radius: 5px;
    border: none;
}
