html, body {
    background: url(../img/caneco-quente-falta-flauta-bg.png) no-repeat center center fixed; 
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 16px;
}

.box {
    position: absolute;
    right: 10vw;
    bottom: 20vh;
    width: 60vw;
    max-width: 700px;
    padding: 0 0 95px 0;
}

.text-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.text-box p {
    max-width: 320px;
    color: white;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.125rem;
    letter-spacing: 0em;
    text-align: right;
}

.form-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.form-line label {
    color: white;
    width: 30%;
    height: 0;
    font-size: 1rem;
    list-style: 1rem;
    text-align: right;
}
.form-line input {
    width: 70%;
    height: 30px;
    padding: 0 16px;
    margin: 16px 0 0 16px;
    border: 3px solid white;
}
.form-line input.error {
    border: 3px solid red;
}
.form-line button {
    height: 34px;
    padding: 0;
    margin: 0;
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.form-result {
    position: absolute;
    right: 0;
}
.form-result-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    background-color: red;
    padding: 10px;
    max-width: 260px;
    text-align: right;
    opacity: 0;
}
.help-block {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.125rem;
    color: white;
    text-transform: uppercase;
}
.help-block:not(:last-child):after {
    content: ', ';
    white-space: pre;
}
.help-block:first-child:after {
    content: ': ';
    white-space: pre;
}
.help-block:only-child:after {
    content: '';
    white-space: pre;
}
.sent {
    padding: 10px;
    background-color: green;
    color: white;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    color: white;
    text-transform: uppercase;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
}
.patrocinios {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, .35);
}
.patrocinios .img {
    width: 590px;
    height: 87px;
    margin: 0 60px;
    background: url('../img/canecoquente-patrocinios.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}

@media (max-width: 768px) {

    .box {
        position: absolute;
        right: 6vw;
        top: 4vh;
        bottom: initial;
        width: 88vw;
        padding: 0 0 120px 0;
    }
    .text-box p {
        width: 100%;
        max-width: 320px;
    }
    .form-line {
        flex-direction: column;
        align-items: flex-end;
    }
    .form-line label {
        width: 100%;
        margin: 15px 0 5px 0;
    }
    .form-line input {
        width: 80%;
    }
    .form-line button {
        margin: 20px 0 0 0;
    }

    .patrocinios .img {
        width: 590px;
        height: 87px;
        margin: 0;
        background: url('../img/canecoquente-patrocinios.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
    }

}