:root {
    --_highlight: color-mix(in oklab, #99ffff, transparent 75%);
}

formulario-denuncias{
    background-color: #071e35;
    min-height: 100vh;
}

.formulario-denuncias{
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: white;
}

.formulario-denuncias p{
    text-align: justify;
}

.formulario-denuncias .descripcion p{
    font-size: 1.6rem;
    padding-left: 9px;
    padding-right: 120px;
    line-height: 1.3;
}


.formulario-denuncias input, .formulario-denuncias textarea{
    width: 100%;
    padding: 9px 9px;
    border-radius: 6px;
    border: 1px solid transparent ;
    margin: 9px 0;
}

.formulario-denuncias textarea:focus, input:focus{
    outline: none;
    border: 1px solid #545454;
}

.formulario-denuncias input::placeholder {
    color: #545454;
    opacity: 1; /* Firefox */
  }

.formulario-denuncias button{
    cursor: pointer;
    background-color: #eefb03;
    color: black;
    font-weight: bold;
    /* box-shadow: 0 0 0 0 rgba(100, 230, 10, 0.25); */
    border: none;
    padding: .5rem 1.2rem;
    margin: 3px 0;
    border-radius: 25px;
    transition: box-shadow 145ms cubic-bezier(.25, 0, .2, 1), outline-offset 145ms cubic-bezier(.25, 0, .2, 1);
}

.formulario-denuncias button:disabled, .formulario-denuncias button[disabled]{
    cursor: not-allowed;
    pointer-events: none;
    background-color: #cccccc !important;
    color: #666666;
}


.formulario-denuncias button:hover{
    box-shadow: 0 0 0 .5rem var(--_highlight);
    transition-duration: .25s;
}

.formulario-denuncias h2{
    color: white;
    font-weight: bold;
    padding-top: 9px;
}

.formulario-denuncias .caja-auxiliar{
    padding: 9px 9px;
    background: white;
    color: black;
    border-radius: 6px;
}

.formulario-denuncias input[type="radio"]{
    width: auto;
}


/*     GRID  Tablets    */
@media screen and (max-width: 992px) {
    nav .chkBtn{
        background-color: white;
    }

    .formulario-denuncias .descripcion p{
        padding: 0 9px;
    }

    .formulario-denuncias .formulario{
        padding: 0px 9px;
    }

}

/*     moviles    */
@media screen and (max-width: 576px) {
    .formulario-denuncias h1{
        padding: 0.5rem 0.9rem;
        font-size: 14vw;
    }

}