.formulario
{
    display: flex;
    flex-direction: column;
    width: 80%;

    margin-left: 10%;
}

.campo
{
    all:unset; 
    width: 100%;
    border: 2px solid #8C9EFF;
    border-radius: 5px;
    margin-top:20px;
    font-family: Roboto;
    color: var(--cor-fonte);
}

#bloco_formulario
{
    font-family: Roboto;
    width: 50%; 
    height:350px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 8px 8px 20px var(--cor-sombra);
}

#titulo_formulario
{
    width: 50%;
    margin-left: 25%;
    text-align: center
}

#botao_enviar
{
    all: unset;
    width: 40%;
    height: 30px;
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    float:right;
    background-color: #8e24aa;
    border-radius: 5px; 
    color: white;
    font-family: 'Fjalla One';
    font-size: 25px;
}

#botao_enviar:hover
{
    background-color: #B36DC6;
    text-decoration: underline;
}

#botao_whats
{
    all: unset;
    width: 40%;
    height: 30px;
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    float:left;
    
    background-color: #128C7E;
    border-radius: 5px; 
    font-family: 'Fjalla One';
    font-size: 25px;    
}

#botao_whats > a{
    color: white;
}

#botao_whats > a:hover
{
    text-decoration: underline;
}

#botao_whats:hover
{
    background-color: #25D366;
}