#forms_section {
    display: flex;
    height: 60vh;
}

.forms_adress {
    background-image: url('../img/banner/Rectangle.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 511px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.forms_container {
    display: flex;
    width: 15vw;
    margin-top: 2rem;
    color: #fff;
}

.forms_container_texts {
    margin-left: 1rem;
}

.forms_container_fields {
    width: 50%;
}

.forms_container_fields h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #232429;
}

.forms_block {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.forms_block label {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
}

.forms_block input {
    width: 85%;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid #63656A;
    border-radius: 4px;
}

.forms_block textarea {
    width: 85%;
    padding: 16px;
    height: 11vh;

}

.button_container {
    width: 85%;
    padding: 16px;
    display: flex;
    justify-content: end;

}

.button_container button {
    background: #19988B;
    border-radius: 100px;
    width: 7vw;
    height: 5vh;
    color: #fff;
    border: none;
    transition: 0.3s;
}

.button_container button:hover {
    opacity: 0.5;
}




/* ----------------------------------------------------------------------------------------- */
/* Telas Pequenas */
@media (min-width: 249px) and (max-width: 767px) {
    #forms_section {
        flex-direction: column;
        height: 124vh;
        padding: 1rem;
        margin-top: 2rem;
    }

    .forms_adress {
        background-image: url('../img/forms_small.png');
        width: 100%;
        height: 100%;
        background-position: center;
        margin-bottom: 2rem;
    }

    .forms_container {
        width: 100%;
        margin: 0;
        margin-top: 1rem;
        text-align: center;
        flex-direction: column;
    }

    .forms_container_texts {
        margin: 1px;
    }

    .forms_contact {
        margin-top: 9rem;
    }

    .forms_container_fields {
        width: 100%;
    }

    .forms_container_texts h3 {
        font-size: 1rem;
    }

    .forms_container_texts p {
        font-size: 0.9rem;
    }

    .button_container button {
        width: 100%;
    }

    .button_container {
        padding: 0;
        width: 98%;
        padding-top: 1rem;
    }
    
}

/* ----------------------------------------------------------------------------------------- */
/* Telas Médias */
@media (min-width: 768px) and (max-width: 1439px) {
    #forms_section {
        margin: 0;
        margin-top: 2rem;
    }

    .forms_adress {
        background-position: center;
        background-size: 25rem;
    }

    .forms_container_fields {
        margin-left: 2rem;
    }

    .forms_container {
        width: 22vw;
        margin-left: 1rem;
        margin-top: 2rem;
    }
}

@media (min-width: 1440px) and (max-width: 1600px) {
    .forms_container {
        width: 29vw;
        margin-left: 3rem;
        margin-top: 2rem;
    }
}