.formcontato {
    background: var(--cor-de-fundo2);
    color: var(--cor-fonte-padrao);
    font-size: 1rem;
    font-family: var(--fonte-padrao);
    margin-top: 1rem;
    width: 100%;
}

.formcontato__img{
    display: none;
}

.formcontato__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.formcontato__subtext{
    font-weight: 500;
    text-align: justify;
}

.formcontato__form{
    width: 296px;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 1rem;
}

.formcontato__form {
    width: 100%;
 
}

.formcontato__input{
    background: #FFFFFF;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 1rem;
    resize: none;
}

.formcontato__textarea{
    background: #FFFFFF;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400;
    height: 80px;
    resize: none;
}

.formcontato__botao{
    width: 151px;
    height: 40px;
    background: #2A7AE4;
    font-size: .875rem;
    color: #ffffff;
    border: none;
    padding: .875rem 1rem .875rem 1rem;
    border-radius: 5px;
}

.formcontato__botao:hover{
    cursor: pointer;
    background-color: #0c458f;
    color: white;
    transition: all .7s;
}

.input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.input-mensagem-erro{
    margin-top: 4px;
    color: rgb(255, 51, 0);
    display: none;
}

.dados-invalido .campo-invalido{
    border: 1px solid rgb(255, 51, 0)
}

.dados-invalido .input-mensagem-erro{
    display: block;
}




@media screen and (min-width: 1024px){
    .formcontato__contacto{
        display: flex;
        justify-content: space-evenly;
    }
    
    .formcontato__img{
        display: block;
        width: 400px;
    }
}