.Content {
   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;
   min-height: 380px;
   border-radius: 10px;
   /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
   text-align: center;
}

.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;
   margin-bottom: 20px;
   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 */
}

#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;
   width: 100%;
}

#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;
}


/* Aviso FJP */

.fundo_aviso_fjp {
   padding-top: 90px;
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-color: #3333338e;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 15;
   transition: opacity 0.3s;
   opacity: 0;
}

.appearing {
   opacity: 1;  
}

.aviso_fjp {
   max-width: 900px;
   max-height: calc(100vh - 110px);
   border-radius: 16px;
   transform: scale(0.5, 0.5);
   opacity: 0.7;
   transition: transform 0.4s, opacity 0.5s;
}

.show {
   transform: scale(1, 1);
   opacity: 1;
}

.aviso_fjp_cabeçalho {
   padding: 12px 100px;
   background-color: #fff;
   color: #c94e52;
   margin-bottom: 7px;
   box-shadow: 5px 3px 5px #000;
   border-radius: 16px 16px 0 0;
   position: relative;
}

.aviso_fjp_cabeçalho h5 {
   text-align: center;
   text-transform: uppercase;
}

#close_btn_fjp {
   position: absolute;
   top: 5px;
   right: 10px;
   cursor: pointer;
   font-size: 20px;
}

.aviso_fjp_texto {
   padding: 30px 40px;
   background-color: #bc2126;
   color: #fff;
   margin-bottom: 7px;
   box-shadow: 5px 3px 5px #000;
}

.aviso_fjp_bottom {
   background-color: #fff;
   text-align: center;
   padding: 0 25px 25px;
   border-radius: 0 0 16px 16px;
   box-shadow: 5px 3px 5px #000;
}

.aviso_fjp_bottom p {
   margin: 0;
   color: #c92526;
}

#logo_fjp {
   width: 190px;
}

.oculto {
   display: none;
}






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

   .containerInfoContent {
       width: 90%;
   }

   .Content {
       padding: 16px;
   }
}

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

   .containerInfoContent {
      width: 100%;
   }

   .Content {
      padding: 10px;
   }
}

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