/* ================================
   DENÚNCIA PAGE
   ================================ */

/* Bloco principal */
.denuncia-section-1 {
  margin: 20vh 30vh 10vh 30vh;
}

.denuncia-section-1 h1 {
  font-size: 35px;
  font-weight: 800;
  color: #5e4985;
  margin: 2vh 0vh;
}

.denuncia-section-1 h1::after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background-color: #a47c1b;
  margin-top: 6px;
  border-radius: 5px;
}

.denuncia-section-1 p {
  font-size: 15px;
  line-height: 1.6;
}

/* Formulário */
.denuncia-form {
  margin-top: 3vh;
  width: 100%;
}

.denuncia-form .form-group {
  margin: 2.5vh 0vh;
}

.denuncia-form label {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.denuncia-form select,
.denuncia-form textarea,
.denuncia-form input[type=file] {
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  padding: .5rem .75rem;
  width: 100%;
}

.denuncia-form textarea {
  resize: vertical;
}

.denuncia-form button {
  background-color: #000;
  color: #fff;
  height: 45px;
  border: 0;
  border-radius: 6px;
  font-weight: 600;
  transition: all .3s ease;
}

.denuncia-form button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* Responsividade */
@media (max-width: 991.98px) {
  .denuncia-section-1 {
    margin: 15vh 5vh;
  }

  .denuncia-section-1 h1 {
    font-size: 28px;
  }

  .denuncia-form button {
    height: 40px;
  }

  .denuncia-form input[type=file] {
    font-size: 13px;
  }
}
