.pagina {
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #000000bf;
    font-family: sans-serif;
    line-height: 150%;
}

.pagina h2 {
    font-weight: 700;
    font-size: x-large;
}

.pagina h3 {
    font-weight: 700;
    font-size: large;
}

.pagina p {
    width: 200%;
    margin: 0;
}

.quadro {
    width: 650px;
    height: 54rem;
    padding: 20px 20px 20px 20px;
    margin: 20px 20px 20px 0;
    background-color: #f1faee;
    border-radius: 10px;
    box-shadow: 0 4px 10px #525252;
}

.separador {
    width: 100%;
    height: 1px;
    background-color: black;
    margin: 20px 0 20px 0;
}

.mapa {
    width: 600px;
    height: 480px;
    margin-top: 20px;
}

.form-grupo {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-grupo>label {
    margin-bottom: 4px;
    font-weight: 500;
    color: #b52e2c;
    font-size: 16px;
}

.form-grupo>input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-grupo>input:focus {
    border: 1px solid #ffe !important;
    outline: none;
}

.form-grupo>select {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
}

.form-grupo>textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 12px;
    resize: vertical;
    min-height: 100px;
    max-height: 100px;
}

form>button {
    width: 100%;
    padding: 12px;
    background: #dc3545;
    color: #f8f9fa;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

form>button:hover {
    background: #e04555;
    cursor: pointer;
}