.informacaoBasicaContent {
    font-family: Arial, sans-serif !important;
    background-color: #fff;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center; 
    min-height: calc(100vh); /* Garante altura suficiente para centralização */
}

.DivTextoAviso {
    width: 60%;
    max-width: 800px;
    text-align: center;
    margin: 30px 0 60px;
}

.DivTextoAviso h4 {
    text-transform: uppercase;
    color: #3d8cd6;
    font-weight: bolder;
    font-size: 22px;
}

.DivTextoAviso p {
    text-align: justify;
    color: #626069;
    font-size: 18px;
}

.atencao {
    font-weight: bold;
}

.DivTextoAviso a {
    text-decoration: none;
    color: white;
    background-color: #0a5bb8;
    border-radius: 10px;
    padding: 5px 8px;
}

.DivTextoAviso a:hover{
    opacity: 0.75;
}

.DivTextoAviso a:active{
    opacity: 1;
}

.containerInfoContent {
    width: 60%;
    max-width: 800px;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: space-between; /* Mantém o espaçamento entre as abas */
    margin-bottom: 4px;
    gap: 4px;
}

.tab {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    background-color: #aaaaaa;
    cursor: pointer;
    border-radius: 15px 15px 0 0;
    font-weight: bold;
    color: #fff;
}

.tab.active {
    background-color: #0a5bb8;
    /* color: #fff; */
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-items: center; /* Centraliza label e input */
}

form h4 {
    color: #3c7bc4;
    font-weight: bold;
    font-size: 18px;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #0a5bb8;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* .captcha {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.captcha input {
    margin-right: 10px;
} */

.submit-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    right: calc(50% - 108.70px);
    bottom: -80px;
    border: none;
    outline: none;
    background-color: transparent;
}

.submit-button:hover {
    opacity: 0.75;
    cursor: pointer;
}

.submit-button:active {
    opacity: 1;
}
.submit-button img {
    width: 80px; /* Ajuste o tamanho da imagem, se necessário */
    height: auto;
    border-radius: 50%; /* Faz a imagem ficar redonda */
    cursor: pointer;
    
    background-color: #0a5bb8; /* Opcional: Adiciona um fundo branco */
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Opcional: Adiciona uma sombra */
    margin-bottom: 10px; /* Espaço entre o ícone e o texto */
}

.submit-button span {
    font-size: 20px; /* Tamanho do texto */
    color: #3d8cd6; /* Cor do texto */
    font-weight: bold;
    text-transform: uppercase; /* Deixa o texto em maiúsculas */
}

#bt_gerar_certidao {
    right: calc(50% - (182.23px/2));
}

#placeholder_bt_enviar {
    width: 100%;
    height: 90px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
/*     width: 100%; */
    background-color: #f2f0f0;
    padding: 20px 17% 60px ;
    border-radius: 0 0 18px 18px;
    position: relative;
}

form:nth-child(2) .form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

form:nth-child(2) .form-group label {
    flex-basis: 100%; /* Faz os labels ocuparem toda a largura */
    margin-bottom: 5px;
}

form:nth-child(2) .form-group input {
    flex: 1;
    margin-right: 10px;
    min-width: 45%; /* Largura mínima para os inputs */
    box-sizing: border-box;
}

form:nth-child(2) .form-group input:last-child {
    margin-right: 0; /* Remove margem do último input */
}

.form-group2 {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
    justify-content: space-between;
}

.form-group2 div {
    width: 45%;
    text-align: left;
}

.form-group2 label {
    font-size: 14px;
    color: #0a5bb8;
    font-weight: bold;
}

.form-group2 input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

#quadra, #lote {
    width: 100%;
    display: inline;
}

/* Formatação do Croqui */

#map {
    width: 540px; 
    height: 400px; 
    position: absolute;
    z-index: -1;
    top: -400px;
}

/* Estilização das mensagens Django */

.messages {
    list-style-type: none;
    background-color: #fff;
    /* padding: 10px; */
}

.success {
    color: green;
    font-weight: bold;
    display: none;
}

.error {
    list-style-type: none;
    color: red;
    font-weight: bold;
}

/* Área drag and drop do KML */

#dropzone {
    border: dashed 1px #000;
    border-radius: 14px;
    padding: 20px;
    color: #626060;
}

#dropzone:hover {
    cursor: pointer;
}

.dropzone.hover {
    background-color: rgb(170, 170, 170);
    border-color: #333;
}

#dropzone p {
    font-size: 14px;
    margin: 0;
 }

.blocked {
    pointer-events: none;
    opacity: 0.45;
    cursor: not-allowed;
}

.fileName {
    position: relative;
    text-align: left;
}

.fileName .bi {
    position: absolute;
    right: 2px;
    font-size: 18px;
    font-weight: bold;
    color: red;
}

.fileName .bi:hover {
    opacity: 0.7;
}


.aviso_kml {
    margin: 20px 0 0 0;
    color: red;
}

#inscricaoImob {
    width: 500px !important;
}

@media only screen and (max-width: 1000px) {
    .DivTextoAviso {
        width: 90%;
    }

    .containerInfoContent {
        width: 90%;
    }

    .informacaoBasicaContent {
        padding: 16px;
    }
}

@media only screen and (max-width: 600px) {
    .DivTextoAviso {
        width: 100%;
    }

    .containerInfoContent {
        width: 100%;
    }

    .informacaoBasicaContent {
        padding: 10px;
    }

    #form-parcelamento {
        padding: 20px 15px 60px ;
    }
}

@media only screen and (max-width: 550px)  {
    #form-eoi {
        padding: 20px 10px 60px ;
    }

    #form-ceep {
        padding: 20px 10px 60px ;
    }
}
