* {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.form {
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 7rem 0 0 0;
    background: url('../img/background-projetos.jpg') no-repeat center center;
    flex-direction: column;
    display: flex;
}
.ttl-form {
    width: 50%;
    font-size: 1.5rem;
    color: #424141;
    text-align: center;
    margin: 1% 0 0 0;
}
.row {
    display: flex;
    justify-content: center;
    border-radius: 10px;
    margin: 0 0 2% 0;
}

.formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inputs {
    background-color: rgb(178, 198, 123);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-items: start;
    border-radius: 10px 0 0 10px;
}

.inputs label {
    color: #000;
    margin-left: 3%;
    font-size: 1.2rem;
}
.entrada{
    height: 30px;
}
.selecionar{
    height: 5px;
}
.entrada, .selecionar {
    width: 80%;
    border: none;
    margin: 1% 0 1% 1%;
}

.area_mensagem {
    width: 90%; 
    border: none;
    margin-left: 1%;
    height: 10vh; 
}
.entrada, .selecionar,.area_mensagem{
    box-shadow: 10px 5px 5px 1px gray;
    margin: 1% 0 1% 2%;
}
.entrada::placeholder, .area_mensagem::placeholder, .selecionar::placeholder {
    padding-left: 2%;
    font: 1rem/3 sans-serif;
    color: gray;
}

/* Classificação da Empresa */
.classificacaoEmpresa {
    width: 100%;
    height: 10%;
    display: flex;
}
.classificacaoEmpresa .qtd {
    margin-right: 1%;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.classificacaoEmpresa .qtd #qtd-funcionario {
    width: 100%;
    height: 3vh;
}

.classificacaoEmpresa .classificacao {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.classificacaoEmpresa .classificacao #classifique {
    font-size: 1.25rem;
}

.classificacaoEmpresa .classificacao #tipoEmpresa {
    width: 90%;
    height: 100%;
    margin-right: 1.5%;
}

/* Contato da Empresa */
.contatoEmpresa {
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: row;
    margin-top: 3%;
}

.contatoEmpresa .seuSite, .contatoEmpresa .zapZap {
    display: flex;
    flex-direction: column;
}

.contatoEmpresa .seuSite {
    width: 60%;
    margin-right: 1%;
}

.contatoEmpresa .seuSite #site {
    width: 100%;
    height: 3vh;
}

.contatoEmpresa .zapZap {
    width: 40%;
    margin-right: 1%;
}

.contatoEmpresa .zapZap #whats {
    width: 90%;
    height: 40%;
}

.mensagem {
    display: flex;
    flex-direction: column;
}

.selecionar {
    color: grey;
    font: 1rem/3 sans-serif;
}

.btn-form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.enviar {
    width: 50%;
    font-size: 1.5rem;
    margin: 2.3%;
    color: white;
    border: none;
    background-color: #8fbe39;
}

.enviar:hover {
    background-color: #3e6f37;
}

.img-form {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(188, 240, 45, 0.708);
    border-radius: 0 10px 10px 0;
}

.img-form h2 {
    color: white;
    text-transform: uppercase;
}

.img-form img {
    width: 100%;
    height: 80%;
}
/* @media only screen and (max-width: 1108px) and (min-width:932px) {
    .ttl-form{
        margin: 0;
    }
    .form{
        height: 100vh;
    }
    .row{
        width: 100%;
        height: 81%;
        align-items: center;
    }
    .formulario{
        width: 50%;
    }
    .img-form{
        width: 40%;
        height: 87%;
    }
    .img-form img{
        height: 60%;
    }

} */
@media only screen and (max-width:1024px)  {
    .formulario{
        width: 100%;
    }
    .classificacaoEmpresa{
        flex-direction: row;
    }
    .inputs{
        border-radius: 10px;
    }
    .contatoEmpresa {
        margin: 0 0 3% 0;
    }

    .img-form{
        display: none;
    }
    
}

/*@media only screen and (max-width: 931px){
    .formulario{
        width: 40%;
    }
    .classificacaoEmpresa{
        flex-direction: row;
    }
    .contatoEmpresa {
        margin: 0 0 3% 0;
    }

    .img-form{
        width: 40%;
        height: 80%;
    }
    .img-form img{
        height: 60%;
    }
}*/

@media only screen and (min-width: 320px) and (max-width: 930px) {
    *{
        font-size: 1rem;
    }
    .row{
        flex-direction: column;
    }
    .formulario{
        width: 90%;
    }
    .inputs{
        border-radius: 10px;
    }
    .img-form{
        display: none;
    }
  }