.container-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
    background-color: #FFFFFF;
}

.container-conteudo{
    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: #FFF6F6;
}

.container-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-form h2{
    font-size: 64pt;
    font-family: "Joan", serif;
    font-weight: 400;
    font-style: normal;
    color: #1a1a1a;
}

.container-form form{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    gap: 20px;
    padding: 20px 0px;
}

.container-datahora{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.container-data{
    display: flex;
    flex-direction: column;
    width: 45%;
}

.container-hora{
    display: flex;
    flex-direction: column;
    width: 45%;
}

.container-form label{
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    color: #561A1A;
}

.container-form input, textarea, select{
    width: 100%;
    background-color: #FFFFFF;
    color: #561A1A;
    border: 1px solid #561A1A;
    border-radius: 5px;
    padding: 5px;
}

.coluna-esquerda-form-cadastro{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 45%;
    height: 100%;
    gap: 5px;
}

.coluna-direita-form-cadastro{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 45%;
    height: 100%;
    gap: 5px;
}

.container-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 30px 0px;
}

.container-button button{    
    cursor: pointer;
    background-color: #561A1A;
}

.container-button button:hover{
    background-color: #1a1a1a;
}