
.centrado {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}
.erradicacion-title {
    font-size: 3rem;
    font-weight: bold;
    color: #4B0984;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}
.erradicacion-form {
    display: flex;
    flex-direction: column;
    background-color: #F5F5F5;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.required {
    color: red;
    font-size: 1.8rem;
}
.prueba {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5px;
    width: 100%;
}
.text-grande {
    font-size: 1.8rem !important;
    padding: 5px;
}

.custom-input {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: black; 
    background-color: white; 
    background-clip: padding-box;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075); 
    transition: all .3s ease-in-out;
    padding: 1rem;
}

.custom-input:hover {
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
        border-color: #FFC14F;

}


.custom-input:focus {
        color: black;
        background-color: #fff;
        border-color: #0d6efd; 
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}

.button-text {
    font-size: 1.4rem;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.panel-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}


.nomenclatura-autocomplete {
    width: 100rem;
}

.text-map {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px;
}

.form-domicilio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    justify-content: center;
    background-color: #F5F5F5;
    padding: 60px;
    width: 90%;
}
.contenedor-form {
    width: 100%;
}
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 50px;
}
.text-nomenclatura {
    padding: 5px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #4B0984;
    margin-bottom: 10px;
}

.text-nomenclatura:hover {
    color: black;
    cursor: pointer;
}

.solicitud-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    margin-top: 20px;
    width: 100%;
}
.reforestar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
}
.solicitud-container-2 {
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.container-solicitud-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.panel-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:column;
    gap: 20px;
    margin-top: 20px;
}
.div6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.parent {
    display: grid;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    align-content: center;
    justify-content: center;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    background-color: #F5F5F5;
    padding: 40px;
}
.title-panel3 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #4B0984;
    margin-bottom: 20px;
    margin-top: 20px;
}
.contentCenter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
@media (min-width: 768px) {
    .parent {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        max-width: 800px;
    }

    .form-container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 50px;
    }
    .form-domicilio {
        width: 80%;
    }
    .erradicacion-form {
        width: 70%;
    }
}
@media (min-width: 1024px) {

    .form-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 50px;
    }

    .form-domicilio {
        width: 80%;
    }
    .erradicacion-form {
        width:70%;
    }
}