body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid {
  mask: url(../img/login/grid.png) no-repeat center / contain;
  -webkit-mask: url(../img/login/grid.png) no-repeat center / contain;
}
.linha {
  mask: url(../img/login/linha.png) no-repeat center / contain;
  -webkit-mask: url(../img/login/linha.png) no-repeat center / contain;
}
.fogos {
  mask: url(../img/login/fogos.png) no-repeat center / contain;
  -webkit-mask: url(../img/login/fogos.png) no-repeat center / contain;
}
.introText {
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  color: dimgray;
}
.loginContainer {
  max-width: 350px;
  text-align: center;
  padding: 32px;
  background-color: white;
  border-radius: 7px;
}
.mdc{
  margin: 20px 0;
}
.actionContainer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
.getHelp {
  margin-right: 16px;
  color: gray;
}
.revealPassword {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  position: absolute;
  top: 30%;
  right: 10px;
  pointer-events: all;
}

#teste{
  background-color: #ff4081;
  background-color: var(--maestrello-terciaria, #ff4081);
  position: fixed;
  top: -45%;
  right: -50%;
  width: 0; 
  height: 0;
  height: 110vw;
  overflow: hidden;
  border-radius: 50%;
  z-index: -1;
  animation-name: teste;
  animation-duration: 0.5s;
  animation-delay: 0;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes teste{
  0%{width: 0; height: 0;}
  50%{width: 210vw; height: 210vw;}
  100%{width: 110vw; height: 110vw;}
  
}
