input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Seccion 1 */
.denuncia1{
    background-image: url('../img/denuncia/banner.jpg');
    height: 650px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
}
.denuncia1-div-bg{
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0.4rem);
    width: 100%;
}
.denuncia1-div{
    padding: 2rem 1rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    max-width: 1000px;
}
.denuncia1-div-titulo{
    color: white;
    font-size: 3rem;
    font-weight: bold;
}
.denuncia1-div-texto{
    color: white;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
/*-----------*/
.denuncia2{
    margin-top: 5rem;
}
.denuncia2-titulo{
    text-align: center;
    margin-bottom: 1rem;
}
.denuncia2-texto{
    text-align: justify;
    font-size: 1.15rem;
}
/*----------*/
.denuncia3{
    margin-top: 5rem;
}
.denuncia3-titulo{
    font-size: 1.4rem;
    font-weight: bold;
}
.denuncia3-div{
    display: flex;
    flex-direction: column;
}
/*--------*/
.denuncia-form{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.denuncia-form-titulo{
    font-weight: bold;
}
.denuncia-form-item{
    display: flex;
    align-items: center;
    gap: 1rem;
}
/*--------*/
.denuncia-form-item-2-div{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.denuncia-form-item-2{
    display: flex;
    flex-direction: column;

    gap: .5rem;
}
.denuncia-form-item-2-int{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.denuncia-form-text{
    max-width: 350px;
}
.denuncia-form-persona{
    display: flex;
}
.btn-agregar-persona{
    margin-top: 2rem;
    background-color: #52891A;
    border: none;
    width: max-content;
    color: white;
    border-radius: 1rem;
    padding: .5rem 2rem;
    transition: all .15s ease-in-out;
}
.btn-agregar-persona:hover{
    transform: scale(1.05);
}

.denuncia-form-persona{
    gap: 1rem;
}
.remove-persona-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    color: white;
    border: none;

    border-radius: 1rem;
    font-family: sans-serif;
    transition: all .15s ease-in-out;
}
.remove-persona-btn:hover{
    transform: scale(1.1);
}
.denuncia-linea{
    width: 100%;
    height: 4px;
    background-color: #e4e4e4;
    margin-bottom: 1.5rem;
}
.denuncia-especificacion{
    flex-direction: column;
    max-width: 350px;
}
.btn-enviar{
    margin-bottom: 2rem;
    background-color: #52891A;
    border: none;
    width: max-content;
    color: white;
    border-radius: 1rem;
    padding: .5rem 2rem;
    transition: all .15s ease-in-out;
}
.btn-enviar:hover,
.btn-cancelar:hover{
    transform: scale(1.05);
}
.btn-cancelar{
    margin-bottom: 2rem;
    background-color: #7F7F7F;
    border: none;
    width: max-content;
    color: white;
    border-radius: 1rem;
    padding: .5rem 2rem;
    transition: all .15s ease-in-out;
}
.modal-footer{
    justify-content: center;
}


@media (max-width: 992px) {
    .denuncia1{
        height: unset;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .denuncia1-div{
        padding: 1rem;
        text-align: center;
        max-width: 100%;
        width: 100%;
        align-items: center;
    }
    .denuncia1-div-titulo{
        font-size: 2rem;
    }
    .denuncia1-div-texto{
        font-size: 1rem;
    }
}


@media (max-width: 457px){
    .denuncia1{
        align-items: center;
    }
}

