p{
    color: #1a1a1a;
}

.container-body-qrcode{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
    background-color: #FFFFFF;
}

.container-conteudo-qrcode{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    height: 100%;
    min-height: 600px;
    border: 1px solid #561A1A;
    border-radius: 10px;
    background-color: #561A1A;
}

.container-form-qrcode{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-form-qrcode h2{
    font-size: 64pt;
    font-family: "Joan", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFFFFF;
}

.container-form-qrcode p{
    padding: 5px;
    background-color: #FFFFFF;
    width: 100%;
    border-radius: 5px;
}

.container-geral-qrcode{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    gap: 50px;
    margin-bottom: 50px;
}

.container-form-qrcode label{
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
}

.container-form input, textarea, select{
    width: 100%;
    background-color: #FFFFFF;
    color: #561A1A;
    border: 1px solid #561A1A;
    border-radius: 5px;
    padding: 5px;
}

.coluna-esquerda-form-qrcode{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 45%;
    height: 100%;
}

.container-datahora-qrcode{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.container-data-qrcode{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.container-hora-qrcode{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.coluna-direita-form-qrcode{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: 100%;
    gap: 20px;
}

.container-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 30px 0px;
}

.container-qrcode{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    background-color: #FFFFFF;
}

.container-qrcode img{
    display: flex;
    width: 100%;
    max-width: 250px;
}

.container-button-qrcode{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-button-qrcode a{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 250px; 
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #1a1a1a;
    text-decoration: none;
    color: #FFFFFF;
}

.container-button-qrcode p{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 250px; 
    padding: 10px;
    border-radius: 5px;
    background-color: #1a1a1a;
    text-decoration: none;
    color: #FFFFFF;
}

.container-button-qrcode a:hover{
    background-color: #272727;
    text-decoration: none;
}

/* BOTÕES */

#flag-confirmado {
    color: #4dd459;
}

#flag-cancelado {
    color: #b32525;
}


@media screen and (max-width: 600px) {
    
    .container-body-qrcode{
        background-color: #561A1A;
    }

    .container-conteudo-qrcode{
        max-width: 100%;
    }

    .container-form-qrcode h2{
        font-size: 36pt;
    }

    .container-geral-qrcode{
        flex-direction: column;
        max-width: 100%;
    }

    .coluna-esquerda-form-qrcode{
        width: 80%;
    }
}