html,
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
}

body {
    display: flex;
    flex-direction: column;
}

div#conteudo {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

div#parte_cima {
    background-image: linear-gradient(to bottom, #cb2026, #e17878);
    width: 40%;
    margin: auto;
    color: #fff;
    padding: 50px;
    padding-top: 10px;
    border-radius: 8px;
    margin-top: 20px;
}

div#parte_cima p {
    font-size: 17px !important;
    font-weight: lighter !important;
}

div#parte_cima_fornecedor p {
    font-size: 17px !important;
    font-weight: lighter !important;
}

div#parte_cima_fornecedor {
    background-image: linear-gradient(to bottom, #2c2c2c, #2c2c2c9f);
    width: 40%;
    margin: auto;
    color: #fff;
    padding: 50px;
    padding-top: 10px;
    border-radius: 8px;
    margin-top: 20px;
}

div#conteudo h1 {
    font-size: 40px;
}

div#conteudo p {
    width: 80%;
    margin: auto;
    text-align: start;
    font-size: 18px;
}

div#parte_baixo {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 50px 0px;
    width: 100%;
    height: auto;
    /* background-image: linear-gradient(to bottom, #ffffff00, #2c2c2c), url("../img/client.jpg"); */
    background-position: center;
    background-size: cover;
}

div#parte_baixo_fornecedor {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 50px 0px;
    width: 100%;
    height: auto;
    /* background-image: linear-gradient(to bottom, #ffffff00, #2c2c2c), url("../img/delivering.jpg"); */
    background-position: center;
    background-size: cover;
}

#form {
    width: 30%;
    margin-top: 0px;
    background-color: #ffffffe4;
    border: 1px solid #2c2c2c;
    padding: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#form input,
#form input[type="date"] {
    width: 90%;
    background-color: #FFFFFF;
    border: 1px solid #2c2c2c81;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 10px;
}

#form input:focus,
#form input[type="date"]:focus {
    border-color: #cb2026;
}


#form button {
    cursor: pointer;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;
    border: none;
    background-color: #2c2c2c;
    padding: 12px 16px 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 10px;
}

#form button:hover {
    background-color: #cb2026;
    transition: 0.4s;
    color: #DADADA;
}

div.campos {
    display: flex;
    flex-direction: column;
    text-align: start;
}


@media (max-width: 900px) {
    body {
        min-height: 126vh;
    }

    #form {
        width: 50%;
        margin-bottom: 100px;
    }

}

@media (max-width: 500px) {

    body {
        min-height: 190vh;
    }

    div#parte_cima {
        width: 70%;
    }

    div#parte_cima_fornecedor {
        width: 70%;
    }

    #form {
        width: 70%;
        margin-bottom: 150px;
    }

    div#parte_cima p {
        width: 100%;
        text-align: center;
    }
}