body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: #FFF;
}

.boleto-section {
    background-color: #FFF;
    width: 50%;
}

form {
    border: 2px solid #019ca3;
    background-color: #FFF;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 180px;
    width: 300px;
    justify-content: space-around;
}

input[type=text] {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    height: 40px;
    font-size: 18px;
    width: 98%;
}

input[type=text]:focus {
    outline: 1px solid #bfbfbf;
}

input[type=submit] {
    background-color: #0081c4;
    height: 36px;
    font-size: 18px;
    color: #FFF;
    border: none;
    border-radius: 2px;
    box-shadow: 2px 2px 2px #aaaaaa;
}

input[type=submit]:hover {
    cursor: pointer;
}

#erro {
    font-size: 12px;
    color: #fe1610;
    height: 10px;
    margin-top: 4px;
}

.iframe-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 15px auto;
    max-width: 600px;
}

iframe {
    height: 500px;
    margin-left: -36px;
    height: 70vh;
    margin-top: -156px;
    width: 550px;
}

.logo-content {
    text-align: center;
    margin-bottom: 30px;
    color: #aaaaaa;
}

.titulo-content {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}


@media only screen and (max-width: 1030px) {
    iframe {
        margin-top: -400px;
    }
}

@media only screen and (max-width: 871px) {
    main {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    section {
        height: auto;
        margin-top: 20px;
        width: 100%;
    }

    iframe {
        margin-top: -260px;
    }
}

@media only screen and (max-width: 523px) {
    iframe {
        margin-top: -400px;
    }
}

@media only screen and (max-width: 448px) {
    iframe {
        margin-top: -372px;
    }
}

@media only screen and (max-width: 370px) {
    iframe {
        margin-top: -400px;
    }
}

@media only screen and (max-width: 362px) {
    iframe {
        margin-top: -550px;
    }
}


@media only screen and (max-height: 300px) {
    iframe {
        margin-top: -180px;
    }
}

.map-container {
    width: 400px;
    height: 300px;
    margin: 0 auto;
}

#lista-boletos {
    display: inline-block;
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 10px;
    margin-bottom: 20px;
}

td {
    width: 200px;
}

tr {
    height: 30px;
}

a {
    text-decoration: none;
}

.logo-img-atencao {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 10px;
}