.forms1{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 8px;
    input, textarea{
        resize: none;
        font-size: 0.8rem;
        border: 1px solid var(--azul);
        padding: 8px;
    }
    textarea{
        height: 100px;
    }
}

@media(max-width:740px){
    .forms1{
        width: 70%;
    }
}

@media(max-width:550px){
    .forms1{
        width: 90%;
    }
}