body {
    height: 100vh;
    background-image: url('../image/bg-repeat.jpg');
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.duvidas {
    display: flex;
    align-items: center;
}

.pergunta {
    padding-right: 60px;
}

.titulo {
    width: 300px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    padding-bottom: 10px;
}

.conteudo {
    width: 300px;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    /* text-align: left; */
}

.formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 340px;
    height: 400px;
    background-color: #fff;
    padding-left: 20px;

}

.caixa {
    width: 300px;
    height: 35px;
    padding-left: 10px;
    border-radius: 5px;
    border: 1px solid black;
    font-size: 15px;
    font-weight: 400;
}



.maior {    
    height: 100px;
    text-align: left;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid black;
    resize: none;
}


.campo-obrigatorio {
    color: red;
    font-size: 8px;
    font-weight: 400;
    padding-bottom: 10px;
}

.obrigatorio {
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 10px;
}

.escondido {
    visibility: hidden;
    
}

.btn {
    width: 300px;
    height: 40px;
    background-color: #3CCC87;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #2BAF6A;
    cursor: pointer;
}

.caixa.campo-obrigatorio {
    border: 1px solid red;
    color: black;
     font-size: 15px;
    font-weight: 400;
}

.caixa.campo-valido {
    border: 1px solid #3CCC87;
}

