@keyframes efeito {
  from {
    transform: rotate(1deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: "MontSerrat";
  src: url("../fonts/Montserrat_Alter/MontserratAlternates-Regular.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "MontSerrat";
}

body {
  background-color: #93cb27;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  position: relative;
  background-color: #93cb27;
  width: 100%;
  height: 100vh;
  color: rgba(212, 95, 95, 0.4941176471);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container img {
  width: 300px;
  height: 250px;
}
@media screen and (max-width: 700px) {
  .container img {
    width: 300px;
    height: 150px;
  }
}
.container .content-1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container .content-1 .text-content {
  display: block;
  outline: none;
  border: 2px solid #fff;
  width: 300px;
  height: 40px;
  margin: 3px;
  background-color: #93cb27;
  color: #fff;
  border-radius: 20px;
  font-weight: normal;
  font-size: 16px;
  padding: 15px;
}
.container .content-1 .text-content::-moz-placeholder {
  color: #fff;
}
.container .content-1 .text-content::placeholder {
  color: #fff;
}
.container .content-1 .text-content:focus {
  border: 2px solid #763ecd;
}
.container .content-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container .content-2 .btn-content {
  position: relative;
  display: block;
  outline: none;
  border: none;
  width: 250px;
  height: 40px;
  margin: 3px;
  background-color: #763ecd;
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 1.5px;
}
.container .content-2 .btn-content .progress {
  position: absolute;
  width: 35px;
  height: 35px;
  bottom: 1px;
  right: 25px;
  opacity: 0;
  pointer-events: 0;
}
.container .content-2 .btn-content .progressActive {
  position: absolute;
  width: 35px;
  height: 35px;
  bottom: 1px;
  right: 25px;
  opacity: 1;
  pointer-events: all;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
  animation: efeito 2s ease infinite;
}
.container .content-2 .btn-content:hover, .container .content-2 .btn-content:focus {
  box-shadow: 0px 0px 5px #763ecd;
  border: 2px solid #fff;
}
.container .content-2 a {
  text-decoration: none;
  font-weight: bold;
}

.pgLogin {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #333;
  opacity: 0;
  pointer-events: none;
  transition: all ease 0.2s;
  z-index: 1;
}
.pgLogin img {
  width: 70px;
  height: 70px;
}

.pgLoginActive {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #333;
  opacity: 0.5;
  pointer-events: all;
  transition: all ease 0.3s;
  z-index: 1;
}
.pgLoginActive img {
  width: 70px;
  height: 70px;
}/*# sourceMappingURL=estilo_2.css.map */