@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Zera as config da página */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: "Roboto", sans-serif;
  height: 100%;
}

/* login e register */

#form-container {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0.5px 10px 15px rgba(0, 0, 0, 0.2);
}

#form-container a {
  color: #007bff;
  text-decoration: none;
  transition: 0.5s;
}

#form-container a:hover {
  color: #0056b3;
}

#form-container .form-control:hover {
  border: #007bff solid 2px;
}

.important {
  color: #ff0000;
}

.row_form {
  align-content: center;
  height: 100%;
  padding: 20px;
}

.navbar {
  background: rgb(9, 9, 121);
  background: linear-gradient(90deg,
      rgba(9, 9, 121, 1) 0%,
      rgba(49, 5, 245, 1) 35%,
      rgba(0, 212, 255, 1) 100%);
}

.urban_logo {
  font-family: "Righteous", cursive !important;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 10px;
}

.urban_logo a:hover {
  color: #3a51d5;
  transition: all 0.3s;
  text-decoration: none;
}

.log_user {
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 14px;
}

/* Sidebar */

.sidebar {
  display: flex;
  flex-direction: column;
  background-image: url("../img/barra_lateral.png");
  max-width: 20%;
  max-height: 100%;
  min-height: 94vh;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Footer Sidebar */
.footer-sidebar p {
  font-size: 0.8rem;
}

/* Conteúdo principal - Main */

.main_base {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 100%;
  min-width: 80%;
}

.navbar_menu {
  display: none;
  color: #fff;
}

/* Resposividade navbar */

@media screen and (max-width: 991px) {
  .navbar_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
  }
}

/* Resposividade main */

@media screen and (max-width: 991px) {
  .main_base {
    width: 100%;
  }
}

/* Paginação */

.pagination {
  display: flex;
  justify-content: space-between;
}

/* Fale Conosco */

#btn-enviar-loader {
  display: none;
}

/* página cidadão */

.card-cidadao {
  background: linear-gradient(to bottom right, #87cefa, #add8e6);
  border-radius: 10px;
}

.card-body-cidadao {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  font-size: 2em;
  cursor: pointer;
}

.card-cidadao,
.card {
  height: 100%;
}

.rotate-card:hover {
  background: #0c5dc5;
  transition: all 0.4s;
}

.smaller {
  font-size: 0.6em;
}

/* página visualiza documentos */

.visualiza-Documentos {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0.5px 10px 15px rgba(0, 0, 0, 0.2);
  margin: 25px auto;
  padding: 25px;
}

.bi-binoculars,
.bi-arrow-right-square-fill,
.bi-binoculars-fill {
  font-size: 1.5em;
  color: black;
  cursor: pointer;
}

.bi-pen,
.bi-arrow-right-square-fill,
.bi-pen-fill {
  font-size: 1.5em;
  color: black;
  cursor: pointer;
}

/* Ajuste para Tela de Celular */

@media screen and (max-width: 520px) {
  .alertastatusevento {
    font-size: 0.8em;
    transition: all 0.3s;
  }
}

@media screen and (max-width: 443px) {
  .alertastatusevento {
    font-size: 0.6em;
    transition: all 0.3s;
  }
}

@media screen and (max-width: 359px) {
  .alertastatusevento {
    font-size: 0.5em;
    transition: all 0.3s;
  }
}

/* Ajustar Layout para telas de notebook */

@media screen and (min-width: 1279px) {
  #div-iden-cidade {
    margin-top: -5px;
  }
}

@media (max-width: 767.98px) {
  .sidebar {
    display: none;
    flex-direction: column;
    background-image: none;
    max-width: 100%;
    max-height: 100%;
    min-height: 94vh;
    background-size: cover;
    background-repeat: no-repeat;
  }
}