* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  scrollbar-width: thin;
  scrollbar-color: black transparent;
  accent-color: #ee0000;
}

:root {
  --primary: #284362;
  --secondary: #1e4c84;
  --accent: #f7cc45;
  --dark: black;
  --light: white;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 20px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary);
  border-radius: 20px;
}

html,
body {
  width: 100%;
  font-family: Roboto, sans-serif;
  overflow-y: overlay;
  overflow-x: hidden;
}

.header {
  height: 80px;
  width: 100vw;
  background-color: var(--light);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
  position: fixed;
  top: 0;
  z-index: 10;
}

.header > .header-navbar {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.header > .header-navbar > ul {
  display: flex;
  list-style: none;
  gap: 20px;
  height: 100%;
  line-height: 100%;
  margin: 0;
}

.header > .header-navbar ul > li {
  font-weight: bold;
  cursor: pointer;
  height: 100%;
  line-height: 77px;
}

.header > .header-navbar ul > li > a {
  text-decoration: none;
  color: var(--primary);
}

.header > .header-navbar ul > li > .btn-close-menu,
.header > .header-navbar ul > li > .btn-open-menu {
  display: none;
  position: fixed;
  top: 22px;
  right: 40px;
  background-color: transparent;
  border: none;
  color: var(--dark);
}

.header > .header-navbar ul > li > .btn-close-menu > img,
.header > .header-navbar ul > li > .btn-open-menu > img {
  filter: brightness(0);
}

@media only screen and (max-width: 700px) {
  .header > .header-navbar {
    z-index: 10;
    position: fixed;
    top: -100vh;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: grid;
    place-items: center;
    background-color: var(--light);
    transition: all 0.3s ease-in;
  }

  .header > .header-navbar > ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header > .header-navbar > ul > li {
    height: auto;
    font-size: 3rem;
    line-height: normal;
  }

  .header > .header-navbar ul > li > .btn-open-menu {
    display: block;
  }

  .header > .header-navbar > ul > li.btn {
    font-size: 1rem;
  }
}

.bodyLogin {
  background-color: var(--primary);
  height: 100%;
  margin: 0px;
}

.linhaLogin {
  height: 100%;
}

.divPost {
  cursor: pointer;
}

.cardLogin {
  background-color: white;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.alinhaCentro {
  position: relative;
  top: 50% !important;
  transform: translateY(-50%);
}

.form-control {
  border-radius: 10px;
  border-color: rgb(87, 87, 87) !important;
  color: rgb(41, 41, 41) !important;
}

.btnRedLogin {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: bold;
  width: 100%;
}

.btnRedLogin:hover {
  filter: brightness(0.9);
}

.btnVermelho {
  background-color: var(--accent);
  color: var(--primary);
}

.btnRed {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: bold;
  /* width: 100%; */
  border-radius: 8px;
  padding: 10px 30px !important;
  margin: 20px;
}

.btnRed:hover {
  filter: brightness(0.9);
}

.btnCinza {
  background-color: var(--secondary);
  color: white;
  font-weight: bold;
  /* width: 100%; */
  border-radius: 8px;
  padding: 10px 30px !important;
  margin: 20px;
}

.btnCinza:hover {
  filter: brightness(0.9);
}

.link {
  color: var(--accent);
  font-weight: bold;
}

.divVermelha {
  position: absolute;
  top: 255px !important;
  background-color: #ee0000;
  height: 150px;
  width: 100%;
  z-index: -9999;
}

.divVermelhaUsuario {
  position: absolute;
  top: 200px !important;
  background-color: #ee0000;
  height: 230px;
  width: 100%;
  z-index: -9999;
}

.divNovidade {
  padding-top: 6rem;
  /* padding-bottom: 1rem; */
  width: 100%;
}

.divUsuario {
  padding-top: 6.5rem;
  position: relative;
  /* padding-bottom: 1rem; */
  width: 84%;
  left: 8%;
}

.nomeUsuario {
  position: relative;
  top: 45px;
  font-weight: bold;
  color: white;
  font-size: 30px;
}

.nav-link {
  font-weight: bold !important;
  color: rgb(24, 24, 24) !important;
}

.collapse {
  width: 100%;
}

.membroNumero {
  position: relative;
  color: #ee0000;
  font-weight: bold;
  top: -6px;
  width: 100%;
  padding-right: 5px;
}

.link-usuario.active {
  color: var(--secondary) !important;
}

.link-usuario {
  color: white !important;
}

/* .link-usuario:hover{
    color: white !important;
} */

.spanAssinado {
  padding-top: 5px;
  padding-bottom: 5px;
}

.forgot-password {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.8rem;
}

.btn-close-forgot {
}

@media (max-width: 575px) {
  .cardLogin {
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .divCinza {
    top: 15% !important;
    height: 200px;
    width: 96%;
    left: 2% !important;
  }

  .divVermelha {
    top: 220px !important;
  }
}

@media (max-width: 400px) {
  .btnRed,
  .btnCinza {
    padding: 5px 20px !important;
    margin: 5px;
    font-size: 0.75rem;
  }
}

.wpp-button {
  position: fixed;
  bottom: 16px;
  right: 16px;
}

.wpp-button img {
  width: 48px;
  height: 48px;
}

a.no-decoration,
a.no-decoration:hover,
a.no-decoration:visited {
  text-decoration: none;
  color: inherit;
}
