* {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}

:root {
  --colorcompany: 48, 0, 97;
  /* 
  OUTRAS CORES

  CINZA: 153, 153, 153
  VERDE: 73, 148,  92
  VERMELHO: 92, 0, 0
  AZUL ESCURO: 0, 28, 59
  AZUL CLARO: 3, 80, 166
  VERDE ESCURO: 0, 61, 23
  LARANJA: 214, 96, 0
  AMARELO: 252, 208, 30
  ROXO: 48, 0, 97
  
  */
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
}

.href_flag{
  max-width: 1200px;
  width: 1200px;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: end;
}
.flag {
  height: 55px;
  width: 30px;
  transition: 0.3s all;
  margin-top: -10px;
  opacity: 0.8;
}
.flag:hover {
  margin-top: -15px;
  opacity: 1;
}

main {
  display: flex;
  margin: 0 auto;
  align-content: center;
  align-items: center;
  align-self: center;
  /* min-height: 80vh;
  height: min-content !important; */
  max-width: 1200px;
  width: 1200px;
  display: flex;
  align-items: center;
  gap: 20px;
}
div#lottie{
  /* margin-top: 100px; */
}
main > section {
  /* width: 50%; */
}
section#presentation {
  /* min-height: 100vh; */
  width: 65%;
}
section#login {
  /* position: relative; */
  /* min-height: 100vh; */
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#login .txt_btn{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#login .txt_btn span {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#login .txt_btn span p{
  font-size: 14px;
}

#login .txt_btn .btn_pag_login{
  background-color: #7B1019;
  padding: 10px 0;
  border: none;
  cursor: pointer;
  color: #fff;
  width: 100%;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

#login .txt_btn .btn_pag_login:hover{
  background-color: #a71723;
}

/* section#login > div {
  position: absolute;
  width: 100%;
  max-width: 330px;
  text-align: left;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
} */
/* section#login .logo_id {
  padding: 20px 0;
} */
section#login form > input:focus {
  border: 1px solid rgb(var(--colorcompany));
}
section#login form > input {
  padding: 12px;
  border: 1px solid #ddd;
  margin: 4px 0;
  width: calc(100% - 32px);
  border-radius: 4px;
}
img.showpass {
  z-index: 999;
  width: 12px;
  position: absolute;
  padding: 18px;
  right: 0;
}
.tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: rgba(0, 0, 0);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  margin: 10px;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}
.tooltiptext:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: rgba(0, 0, 0);
  border-width: 5px;
  margin-top: -5px;
}
span.toggle_pass:hover .tooltiptext {
  visibility: visible;
}
p.mask_ID {
  position: absolute;
  margin: -42.5px 2px 0 2px;
  background: #eee;
  padding: 11px;
  border-radius: 4px 0 0 4px;
  font-weight: 400;
}
p.forgot_pass {
  color: rgb(var(--colorcompany));
  cursor: pointer;
  float: right;
  padding-right: 6px;
  font-weight: 300;
}
form p {
  padding-top: 19px;
  padding-bottom: 7px;
  font-weight: 700;
  float: left;
  min-width: 150px;
}
form button {
  background: linear-gradient(to right, #fff 49%, rgb(var(--colorcompany)) 49%);
  background-size: 205% 100%;
  background-position: right bottom;
  color: #fff;
  padding: 12px 30px 12px 40px;
  border: none;
  border-radius: 4px;
  font-weight: 100;
  font-size: 0.85rem;
  margin-top: 20px;
  position: relative;
  border: 1px solid rgb(var(--colorcompany));
  transition: ease all 300ms;
}
/* form button::after {
  content: "";
  position: absolute;
  display: block;
  width: 157px;
  height: 37px;
  top: 6px;
  left: 6px;
  z-index: -1;
  background-color: transparent;
  border: 1px solid rgb(var(--colorcompany));
  border-radius: 4px;
} */
button:hover {
  background-position: left bottom;
  color: rgb(var(--colorcompany));
}
button:hover svg path {
  fill: rgb(var(--colorcompany));
}

.vec {
  width: 50%;
  height: 80vh;
  /* background-image: linear-gradient(
    55deg,
    rgb(var(--colorcompany)),
    rgba(var(--colorcompany), 0.4)
  ); */
  position: absolute;
  z-index: 1;
  /* border-radius: 20vh; */
  top: -0px;
  left: -10px;
  /* transform: rotate(45deg); */
}
.vec svg {
  width: 100%;
  height: auto;
}
.vec svg linearGradient stop {
  stop-color: rgb(var(--colorcompany));
}
button svg {
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 17px;
  margin-left: 14px;
  margin-top: -3px;
  top: auto;
  right: auto;
  position: relative;
}
section#login > div.footer {
  position: absolute;
  bottom: 0;
  text-align: center;
  top: auto;
}
div.footer ul {
  list-style: none;
  padding-left: 0;
  display: inline-flex;
}
div.footer ul li {
  padding: 17px 30px;
}
div.footer ul li:hover {
  color: rgb(var(--colorcompany));
}
div.popup_pass {
  position: absolute;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
}
div.popup_pass > div {
  max-width: 350px;
  position: absolute;
  background-color: #eee;
  border-radius: 4px;
  width: 100%;
  max-width: 330px;
  text-align: left;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.popup_pass div > iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin-top: -10px;
}
div.popup_pass div > div {
  display: inline-block;
  padding: 30px;
  border-radius: 4px 4px 0 0;
  background-color: #006e9c;
  color: #fff;
  width: calc(100% - 60px);
}
div.popup_pass div div > p {
  float: left;
}
div.popup_pass div div > img {
  float: right;
}
div.signature {
  width: fit-content;
  padding: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
}

@media screen and (max-width: 910px) {
  section#presentation {
    display: none;
  }
  main > section {
    width: 100%;
  }
  .tooltiptext {
    margin: 45px 0px 0px -80px;
  }
  .tooltiptext:after {
    border-bottom-color: rgba(0, 0, 0);
    border-right-color: transparent;
    right: 45%;
    top: 0%;
    margin-top: -10px;
  }
}

    border-bottom-color: rgba(0, 0, 0);
    border-right-color: transparent;
    right: 45%;
    top: 0%;
    margin-top: -10px;
  }
}
