.disabledLink {
  pointer-events: none;
  cursor: default;
}

.login .form .arrow-wrapper {
  transition: all 0.45s ease-in-out !important;
  position: relative !important;
  margin: 0 !important;
  width: 100% !important;
  height: 50px;
  right: 0 !important;
  float: right !important;
  background: linear-gradient(90deg, #006095, #006095) !important;
  box-shadow: 0 3px 20px rgba(0, 252, 209, 0.4) !important;
  border-radius: 12px;
  color: white;
}

.login.loading .form .arrow-wrapper {
  background: linear-gradient(90deg, #58c7c2, #006095) !important;
}

.login .form .arrow-wrapper .arrow {
  position: absolute !important;
  top: 50% !important;
  margin: auto !important;
  transition: all 0.45s ease-in-out !important;
  right: 35px !important;
  width: 15px !important;
  height: 2px !important;
  background: none !important;
  transform: translateY(-50%) !important;
}

.login .form .arrow-wrapper .arrow:before {
  position: absolute !important;
  content: '' !important;
  top: -4px !important;
  right: 0 !important;
  width: 8px !important;
  height: 8px !important;
  border-top: 2px solid #fff !important;
  border-right: 2px solid #fff !important;
  transform: rotate(45deg) !important;
}

.button-text {
  transition: all 0.45s ease-in-out !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #fff !important;
  line-height: 55px !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.login.loading .form .arrow-wrapper {
  width: 55px !important;
  animation: sk-rotateplane 1.2s infinite ease-in-out .5s !important;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  /*animation: sk-rotateplane 1.2s infinite ease-in-out;*/
}

.login.loading .form .arrow-wrapper .arrow {
  background: #fff !important;
  transform: translate(15px, 0) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease-in-out .5s !important;
}

.login .form .arrow-wrapper p {
  color: white;
}

.entrar:focus {
  outline: 0;
}

.login.loading .arrow-wrapper p {
  display: none;
}

.loading button.entrar.button:after {
  content: 'Entrando...';
  padding: 0px 0px 0px 45px;
  vertical-align: -102%;
  color: #9da9a8;
  opacity: 0;
  animation: 1.3s fadeIn;
  animation-fill-mode: forwards;
  transition: opacity 1.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) !important;
  }

  50% {
    transform: perspective(120px) rotateY(180deg) !important;
  }

  100% {
    transform: perspective(120px) rotateY(180deg) rotateX(180deg) !important;
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

@media (max-width: 570px) and (orientation: portrait) {
  .login .form .arrow-wrapper {
    border-radius: 9px !important;
  }

  .login.loading .form .arrow-wrapper {
    width: 35px !important;
  }

  .login .form .arrow-wrapper .arrow {
    right: 30px !important;
  }
}

@media screen and (max-width: 321px) {
  .login .form .arrow-wrapper {
    height: 30px !important;
  }
}


html {
  height: 100vh;
  width: 100vw;
  font-size: 100%;
}

body {
  font: 400 13.3333px Arial;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  background: linear-gradient(45deg, #32bfb7, #04a9a0, #0a70a9, #006095);
  background-size: 300% 300%;
  animation: animateColors 10s ease infinite;
}

.loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  font-size: 1.5em;
  text-align: center;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0px 0px 10px #FFF;
}

@keyframes animateColors {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

header {
  height: 8vh;
  background-color: rgb(255 255 255 / 55%);
  display: flex;
  align-items: center;
}

header img {
  height: 80%;
  padding: 0 1%;
}

main {
  height: 88%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  height: 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(0 0 0 / 70%);
  background-color: rgb(255 255 255 / 55%);
}

.area-login {
  width: 22rem;
  background-color: rgb(255 255 255 / 75%);
  border-radius: 3rem 0.25rem 3rem 0.25rem;
  padding: 2rem;
  margin: 1rem;
  overflow: hidden;
}

.area-login .header {
  display: flex;
  height: 5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.area-login .header img {
  max-width: 100%;
  max-height: 100%;
}

.area-login .body {
  width: 100%;
  margin: 0.5rem 0;
  max-height: 193px !important;
}

.area-login .body .area-user,
.area-login .body .area-pass {
  display: flex;
  margin: 10px 0;
}

.area-login .body .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  min-width: 3rem;
  border-radius: 5px 0 0px 5px;
  border: 1px solid rgb(0 96 149 / 70%);
  border-right: 0;
  color: rgb(0 0 0 / 0.75);
  background-color: rgb(255 255 255 / 70%);
}

.area-login .body .iconRight {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  border-radius: 0px 5px 5px 0px;
  border: 1px solid rgb(0 96 149 / 70%);
  border-left: 0;
  color: rgb(0 0 0 / 0.75);
  background-color: rgb(255 255 255 / 70%);
  padding: 3px;
}

.area-login .body input {
  height: 2.4rem;
  width: 100%;
  border-radius: 0px 3px 3px 0;
  border: 1px solid rgb(0 96 149 / 70%);
  padding: 5px;
  font-size: 12pt;
  color: rgb(71 84 90);
  background-color: rgb(255 255 255 / 70%);
}

.area-login .body p {
  color: rgb(0 0 0 / 70%);
}

.area-login .body button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background-color: #00609500;
  font-size: 12pt;
  max-height: 57px !important;
}

.area-login .footer {
  display: flex;
  justify-content: flex-end;
}

.area-login .footer img {
  max-width: 11rem;
  margin-top: 1.25rem;
}

.area-login .footer-titulo {
  display: flex;
  justify-content: flex-end;
}

.area-login .footer-titulo a {
  font-size: 14px;
  margin-right: 0px;
}

a {
  color: #3276b1;
  text-decoration: none;
}

/* ~~~ ~~ ~ ANIMACAO ~ ~~ ~~~ */
.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: -1;
  overflow: hidden;
}

.circles li {
  --elem_size: 75px;

  /* animation */
  --durate_1: 5s;
  --durate_2: 6s;
  --durate_3: 7s;
  --durate_4: 8s;
  --delay_1: 0s;
  --delay_2: 0s;
  --delay_3: 0s;
  --delay_4: 0s;

  position: absolute;
  display: block;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.2);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  transition: background-color 2s;
}

.circles.error-pass li {
  background-color: red;
  transform: none;
  filter: invert(0) opacity(0.5) !important;
  transition-duration: 2s;
}

/* - TOP - */
.circles li:nth-child(1) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 10%;
  left: 13%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/Aluno.png);
}

.circles.floating li:nth-child(1) {
  animation: animateFloatTop 20s linear infinite;
}

.circles.to-center li:nth-child(1) {
  animation: animateTop var(--durate_1) linear infinite;
}

.circles li:nth-child(2) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: -5%;
  left: 45%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/Financeiro.png);
}

.circles.floating li:nth-child(2) {
  animation: animateFloatTop 20s linear infinite;
}

.circles.to-center li:nth-child(2) {
  animation: animateTop var(--durate_2) linear infinite;
}

.circles li:nth-child(3) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 8%;
  left: 75%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/CRM.png);
}

.circles.floating li:nth-child(3) {
  animation: animateFloatTop 20s linear infinite;
}

.circles.to-center li:nth-child(3) {
  animation: animateTop var(--durate_3) linear infinite;
}

.circles li:nth-child(4) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 0;
  left: 90%;
  filter: invert(1) opacity(0.25);
  opacity: 0;
  background-image: url(tela_login_icones/Aluno.png);
}

.circles.floating li:nth-child(4) {
  animation: animateFloatTop 20s linear infinite;
}

.circles.to-center li:nth-child(4) {
  animation: animateTop var(--durate_4) linear infinite;
}

/* - RIGHT - */
.circles li:nth-child(5) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 20%;
  right: 3%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/time-support.svg);
}

.circles.floating li:nth-child(5) {
  animation: animateFloatButtom 20s linear infinite;
}

.circles.to-center li:nth-child(5) {
  animation: animateRight var(--durate_1) linear infinite;
}

.circles li:nth-child(6) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 40%;
  right: 25%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/Professor.png);
}

.circles.floating li:nth-child(6) {
  animation: animateFloatButtom 20s linear infinite;
}

.circles.to-center li:nth-child(6) {
  animation: animateRight var(--durate_2) linear infinite;
}

.circles li:nth-child(7) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 60%;
  right: 15%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/Aluno.png);
}

.circles.floating li:nth-child(7) {
  animation: animateFloatButtom 20s linear infinite;
}

.circles.to-center li:nth-child(7) {
  animation: animateRight var(--durate_3) linear infinite;
}

.circles li:nth-child(8) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 80%;
  right: 4%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/Financeiro.png);
}

.circles.floating li:nth-child(8) {
  animation: animateFloatButtom 20s linear infinite;
}

.circles.to-center li:nth-child(8) {
  animation: animateRight var(--durate_4) linear infinite;
}



/* - BOTTOM - */
.circles li:nth-child(9) {
  width: var(--elem_size);
  height: var(--elem_size);
  left: 10%;
  bottom: 15%;
  filter: invert(1) opacity(0.25);
  opacity: 0;
  background-image: url(tela_login_icones/instituicao.png);
}

.circles.floating li:nth-child(9) {
  animation: animateFloatTop 20s linear infinite;
}

.circles.to-center li:nth-child(9) {
  animation: animateBottom var(--durate_1) linear infinite;
}

.circles li:nth-child(10) {
  width: var(--elem_size);
  height: var(--elem_size);
  left: 25%;
  bottom: 30%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/CRM.png);
}

.circles.floating li:nth-child(10) {
  animation: animateFloatTop 20s linear infinite;
}

.circles.to-center li:nth-child(10) {
  animation: animateBottom var(--durate_2) linear infinite;
}

.circles li:nth-child(11) {
  width: var(--elem_size);
  height: var(--elem_size);
  left: 50%;
  bottom: 10%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/instituicao.png);
}

.circles.floating li:nth-child(11) {
  animation: animateFloatTop 20s linear infinite;
}

.circles.to-center li:nth-child(11) {
  animation: animateBottom var(--durate_3) linear infinite;
}

.circles li:nth-child(12) {
  width: var(--elem_size);
  height: var(--elem_size);
  left: 70%;
  bottom: 30%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/instituicao.png);
}

.circles.floating li:nth-child(12) {
  animation: animateFloatTop 20s linear infinite;
}

.circles.to-center li:nth-child(12) {
  animation: animateBottom var(--durate_4) linear infinite;
}

/* - LEFT - */
.circles li:nth-child(13) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 20%;
  left: 1%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/Financeiro.png);
}

.circles.floating li:nth-child(13) {
  animation: animateFloatButtom 20s linear infinite;
}

.circles.to-center li:nth-child(13) {
  animation: animateLeft var(--durate_1) linear infinite;
}

.circles li:nth-child(14) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 40%;
  left: 20%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/time-support.svg);
}

.circles.floating li:nth-child(14) {
  animation: animateFloatButtom 20s linear infinite;
}

.circles.to-center li:nth-child(14) {
  animation: animateLeft var(--durate_2) linear infinite;
}

.circles li:nth-child(15) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 60%;
  left: 10%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/instituicao.png);
}

.circles.floating li:nth-child(15) {
  animation: animateFloatButtom 20s linear infinite;
}

.circles.to-center li:nth-child(15) {
  animation: animateLeft var(--durate_3) linear infinite;
}

.circles li:nth-child(16) {
  width: var(--elem_size);
  height: var(--elem_size);
  top: 78%;
  left: 1%;
  opacity: 0.65;
  filter: invert(1) opacity(0.25);
  background-image: url(tela_login_icones/Professor.png);
}

.circles.floating li:nth-child(16) {
  animation: animateFloatButtom 20s linear infinite;
}

.circles.to-center li:nth-child(16) {
  animation: animateLeft var(--durate_4) linear infinite;
}


/* Animacao de flutucao */
@keyframes animateFloatTop {
  0% {
    transform: translate(0.5rem, 15rem) rotate(-60deg);
    -webkit-transform: translate(0.5rem, 15rem) rotate(-60deg);
  }

  20% {
    transform: translate(1rem, 10rem) rotate(-30deg);
    -webkit-transform: translate(1rem, 10rem) rotate(-30deg);
  }

  40% {
    transform: translate(1.5rem, 5rem) rotate(0deg);
    -webkit-transform: translate(1.5rem, 5rem) rotate(0deg);
  }

  60% {
    transform: translate(2rem, 5rem) rotate(60deg);
    -webkit-transform: translate(2rem, 5rem) rotate(60deg);
  }

  80% {
    transform: translate(2rem, 10rem) rotate(0deg);
    -webkit-transform: translate(2rem, 10rem) rotate(0deg);
  }

  100% {
    transform: translate(0.5rem, 15rem) rotate(-60deg);
    -webkit-transform: translate(0.5rem, 15rem) rotate(-60deg);
  }
}

@keyframes animateFloatButtom {
  0% {
    transform: translate(0.5rem, -15rem) rotate(-60deg);
    -webkit-transform: translate(0.5rem, -15rem) rotate(-60deg);
  }

  20% {
    transform: translate(1rem, -10rem) rotate(-30deg);
    -webkit-transform: translate(1rem, -10rem) rotate(-30deg);
  }

  40% {
    transform: translate(1.5rem, -5rem) rotate(0deg);
    -webkit-transform: translate(1.5rem, -5rem) rotate(0deg);
  }

  60% {
    transform: translate(2rem, -5rem) rotate(60deg);
    -webkit-transform: translate(2rem, -5rem) rotate(60deg);
  }

  80% {
    transform: translate(2rem, -10rem) rotate(0deg);
    -webkit-transform: translate(2rem, -10rem) rotate(0deg);
  }

  100% {
    transform: translate(0.5rem, -15rem) rotate(-60deg);
    -webkit-transform: translate(0.5rem, -15rem) rotate(-60deg);
  }
}

/* Animacao de login bem sucedido */
@keyframes animateTop {
  25% {
    transform: translateY(0) rotate(720deg);
    opacity: 0.65;
  }

  100% {
    transform: translateY(50vh) rotate(0deg);
    left: 50vw;
    right: 50vw;
    opacity: 0;
    border-radius: 50%;
  }
}

@keyframes animateBottom {
  25% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.65;
  }

  100% {
    transform: translateY(-50vh) rotate(720deg);
    left: 50vw;
    right: 50vw;
    opacity: 0;
    border-radius: 50%;
  }
}

@keyframes animateRight {
  25% {
    transform: translateX(0) rotate(0deg);
    opacity: 0.65;
  }

  100% {
    transform: translateX(-50vw) rotate(720deg);
    top: 50vh;
    bottom: 50vh;
    opacity: 0;
    border-radius: 50%;
  }
}

@keyframes animateLeft {
  25% {
    transform: translateX(0) rotate(0deg);
    opacity: 0.65;
  }

  100% {
    transform: translateX(50vw) rotate(720deg);
    top: 50vh;
    bottom: 50vh;
    opacity: 0;
    border-radius: 50%;
  }
}


/* Responsividade infinita relativizando a altura da tela */
@media (max-height: 570px) and (orientation: landscape) {
  .circles li {
    --elem_size: 14vh;
  }

  footer p {
    font-size: 2.75vh;
  }

  .area-login {
    height: 65vh;
    width: 62vh;
    padding: 5.25vh;
    margin: 2.25vh;
    border-radius: 8.3vh 0.7vh 8.3vh 0.7vh;
  }

  .area-login .header {
    height: 22%;
    margin-bottom: 9%;
  }

  .area-login .body {
    position: relative;
    width: 100%;
    height: 52%;
    margin: 2% 0;
  }

  .area-login .body .area-user,
  .area-login .body .area-pass {
    height: 21%;
    margin: 3% 0;
  }

  .area-login .body .icon {
    height: calc(100% - 2px);
    width: 8vh;
    min-width: 8vh;
    border-radius: 5px 0 0px 5px;
    border: 1px solid rgb(0 96 149 / 70%);
    border-right: 0;
    font-size: 3vh;
  }

  .area-login .body input {
    height: auto;
    width: 100%;
    border-radius: 0px 3px 3px 0;
    border: 1px solid rgb(0 96 149 / 70%);
    padding: 0.25vh;
    font-size: 3vh;
  }

  .area-login .body p {
    margin: 5% 0;
    font-size: 2.8vh;
  }

  .area-login .body button {
    height: 20%;
    width: 100%;
    padding: 2%;
    margin: 2.5% 0;
    border-radius: 1vh;
    border: 0;
    font-size: 3vh;
  }

  .area-login .footer {
    height: 15%;
  }

  .area-login .footer img {
    width: 22.5vh;
    margin-top: 4.25vh;
  }

  .area-login .footer-titulo a {
    font-size: 9px;
    margin-right: 0px;
  }
}

/* Responsividade infinita relativizando a largura da tela */
@media (max-width: 570px) and (orientation: portrait) {
  .circles li {
    --elem_size: 14vw;
  }

  header img {
    height: auto;
    max-height: 80%;
    max-width: 98vw;
    padding: 0 1vw;
  }

  footer p {
    font-size: 2.75vw;
  }

  .area-login {
    height: 65vw;
    width: 62vw;
    padding: 5.25vw;
    margin: 2.25vw;
    border-radius: 8.3vw 0.7vw 8.3vw 0.7vw;
  }

  .area-login .header {
    height: 22%;
    margin-bottom: 9%;
  }

  .area-login .body {
    position: relative;
    width: 100%;
    height: 52%;
    margin: 2% 0;
  }

  .area-login .body .area-user,
  .area-login .body .area-pass {
    height: 21%;
    margin: 3% 0;
  }

  .area-login .body .icon {
    height: calc(100% - 2px);
    width: 8vw;
    min-width: 8vw;
    border-radius: 5px 0 0px 5px;
    border: 1px solid rgb(0 96 149 / 70%);
    border-right: 0;
    font-size: 3vw;
  }

  .area-login .body input {
    height: auto;
    width: 100%;
    border-radius: 0px 3px 3px 0;
    border: 1px solid rgb(0 96 149 / 70%);
    padding: 0.25vw;
    font-size: 3vw;
  }

  .area-login .body button {
    height: 20%;
    width: 100%;
    padding: 2%;
    margin: 2.5% 0;
    border-radius: 1vw;
    border: 0;
    font-size: 3vw;
  }

  .area-login .footer {
    height: 15%;
  }

  .area-login .footer img {
    width: 22.5vw;
    margin-top: 4.25vw;
  }

  .area-login .footer-titulo a {
    font-size: 9px;
    margin-right: 0px;
  }
}

.SmallBox {
  position: absolute;
  right: 5px;
  top: 20px;
  width: 420px;
  color: #fff;
  z-index: 9999;
  overflow: hidden;
  border: 1px solid transparent
}

.SmallBox:hover {
  border: 1px solid #fff;
  cursor: pointer
}

.SmallBox .foto {
  font-size: 50px;
  position: absolute;
  left: 17px
}

.SmallBox .textoFull {
  width: 93%;
  float: left;
  padding-left: 20px
}

.SmallBox .textoFoto {
  width: 78%;
  margin: 3px 20px 3px 80px;
  float: left
}

.miniPic {
  position: absolute;
  bottom: 8px;
  right: 9px
}

.miniIcono {
  height: 100%;
  font-size: 20px
}

.SmallBox span {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -1px;
  display: block;
  margin: 4px 0
}

.SmallBox p {
  font-size: 13px;
  margin-top: 2px
}

#pageslide {
  display: none;
  position: absolute;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 305px;
  padding: 20px;
  background-color: #004d60;
  color: #FFF;
  -webkit-box-shadow: inset 0 0 5px 5px #222;
  -moz-shadow: inset 0 0 0 0 #222;
  box-shadow: inset 0 0 0 0 #222
}

.purehtml {
  color: #fff;
  font-size: 16px
}

.animated.fast {
  -ms-animation-duration: .4s
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0)
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px)
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0)
  }
}

@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px)
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0)
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px)
  }

  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0)
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px)
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0)
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px)
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0)
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0)
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px)
  }
}

@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0)
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(-20px)
  }
}

@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0)
  }

  100% {
    opacity: 0;
    -o-transform: translateX(-20px)
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0)
  }

  100% {
    opacity: 0;
    transform: translateX(-20px)
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft
}

.alert {
  margin-bottom: 20px;
  margin-top: 0;
  color: #675100;
  border-width: 0;
  border-left-width: 5px;
  padding: 10px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0
}

.alert .close {
  top: 0;
  right: -5px;
  line-height: 20px
}

.alert-heading {
  font-weight: 600
}

.alert-danger {
  border-color: #953b39;
  color: #fff;
  background: #c26565;
  text-shadow: none
}

.alert-warning {
  border-color: #dfb56c;
  color: #826430;
  background: #efe1b3
}

.alert-success {
  border-color: #8ac38b;
  color: #356635;
  background: #cde0c4
}

.alert-info {
  border-color: #9cb4c5;
  color: #305d8c;
  background: #d6dde7
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -moz-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear
}

.fade.in {
  opacity: 1;
}

button.close {
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
}

.close {
  float: right;
  font-size: 19.5px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
  filter: alpha(opacity=20);
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  display: block;
  width: 100%;
  height: 32px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control,
.input-lg,
.input-sm,
.input-xs {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}

.form-control {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

input[type="text" i] {
  padding: 1px 2px;
  height: 2.45rem;
  width: 100%;
  border-radius: 0px 3px 3px 0;
  border: 1px solid rgb(0 96 149 / 70%);
  padding: 5px;
  font-size: 12pt;
  color: rgb(71 84 90);
  background-color: rgb(255 255 255 / 70%);
}

input {
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: -internal-light-dark(black, white);
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  appearance: textfield;
  background-color: -internal-light-dark(rgb(255, 255, 255), rgb(59, 59, 59));
  -webkit-rtl-ordering: logical;
  cursor: text;
  margin: 0em;
  font: 400 13.3333px Arial;
  padding: 1px 2px;
  border-width: 2px;
  border-style: inset;
  border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
  border-image: initial;
}

.btn {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .05);
  -moz-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .05);
  -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .05);
}

.btn,
a:link,
button {
  -webkit-tap-highlight-color: rgba(169, 3, 41, .5);
}

.btn-primary {
  color: #fff;
  background-color: #3276b1;
  border-color: #2c699d;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.42857143;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/******** modal ******/

.modal-open {
  overflow: hidden
}

.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform .3s ease-out;
  -moz-transition: -moz-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0)
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 3px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  background-clip: padding-box;
  outline: 0
}

.modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000;
  min-height: 100% !important;
  z-index: -1;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.43px
}

.modal-header .close {
  margin-top: -2px
}

.modal-title {
  margin: 0;
  line-height: 1.42857143
}

.modal-body {
  position: relative;
  padding: 20px
}

.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
  margin-left: 5px;
  margin-bottom: 0
}

.modal-footer .btn-group .btn+.btn {
  margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
  margin-left: 0
}

@media (min-width:768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
  }

  .modal-sm {
    width: 300px
  }
}

@media (min-width:992px) {
  .modal-lg {
    width: 900px
  }
}

#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification {
  min-width: 260px;
  max-width: 340px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  border-left: 6px solid transparent;
  opacity: 0;
  transform: translateX(20px);
  animation: slideIn 0.2s forwards;
}

.notification-title {
  font-weight: bold;
  margin-bottom: 4px;
}

.notification-message {
  font-size: 14px;
}

.notification.success {
  background: #d4f8d4;
  /* verde claro */
  border-left-color: #28a745;
}

.notification.info {
  background: #d9ecff;
  /* azul claro */
  border-left-color: #007bff;
}

.notification.danger {
  background: #ffd6d6;
  /* vermelho claro */
  border-left-color: #dc3545;
}

.notification.warning {
  background: #fff3cd;
  /* amarelo claro */
  border-left-color: #ffc107;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}

.alert {
  border-radius: 12px;
}

.logo-top {
  text-align: center;
  margin-bottom: 5px;
}

.input-group {
  margin-bottom: 15px;
}

label {
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
}

.input-wrapper {
  position: relative;
}

input[type="text"],
input[type="password"] {
  height: 2.4rem;
  width: 100%;
  padding: 12px;
  padding-right: 40px;
  border: 1px solid #b5c8ff;
  border-radius: 8px;
  background: #ffffff;
}

.icon-wrapper {
  display: inline-flex;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.icon-wrapper:hover {
  background-color: rgba(207, 206, 206, 0.699);
}

.toggle-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background: #314165;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.btn-login:hover {
  background: #3b6bea;
}

.forgot {
  margin-top: 12px;
  text-align: center;
}

.forgot a {
  color: #2c5fd4;
  text-decoration: none;
}

.logo-bottom {
  position: absolute;
  bottom: 5px;
  text-align: center;
}

.footer-login {
  position: absolute;
  bottom: 10px;
  font-size: 12px;
  color: #666666;
}

#custom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99990;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s ease-in-out;
  backdrop-filter: blur(2px);
  /* opcional */
}

#custom-overlay .overlay-message {
  background: #ffffff;
  padding: 20px 35px;
  border-radius: 10px;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #000;
  text-align: center;
  max-width: 80%;
}