@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", sans-serif;
}

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

.container {
  background-color: #93cb27;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.container img {
  width: 300px;
  height: 300px;
}
.container .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container .content .btn-content {
  position: relative;
  display: block;
  outline: none;
  border: 2px solid #fff;
  width: 250px;
  height: 40px;
  margin: 3px;
  background-color: #fff;
  color: #763ecd;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all ease 0.3s;
  letter-spacing: 1.5px;
}
.container .content .btn-content:hover {
  background-color: #763ecd;
  color: #fff;
  transition: all ease 0.3s;
}
.container .content p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #763ecd;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 1.5px;
}
.container .content p span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #763ecd;
  padding: 3px;
  color: #fff;
  text-align: center;
  margin: 5px;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .container .content {
    position: absolute;
    top: 0;
    justify-content: center;
  }
}
.container p:hover {
  color: #5c24b8;
}

.cadUsuario {
  position: absolute;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #93cb27;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: all ease 0.3s;
}
.cadUsuario img {
  position: absolute;
  top: 0;
  aspect-ratio: 5/1;
}
@media screen and (max-width: 700px) {
  .cadUsuario img {
    position: absolute;
    top: -20px;
    width: 80px;
    height: 80px;
  }
}
.cadUsuario .controle-cadUsuario {
  width: 50%;
  height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #763ecd;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .cadUsuario .controle-cadUsuario {
    width: 90%;
    height: 85vh;
    margin-top: 25px;
  }
}
.cadUsuario .controle-cadUsuario .formContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
}
.cadUsuario .controle-cadUsuario .formContent .text-content {
  display: block;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #763ecd;
  width: 90%;
  height: 30px;
  margin: 19px;
  background-color: #fff;
  color: #763ecd;
  font-weight: normal;
  font-size: 16px;
  padding: 20px;
}
.cadUsuario .controle-cadUsuario .formContent .text-content::-moz-placeholder {
  color: #763ecd;
}
.cadUsuario .controle-cadUsuario .formContent .text-content::placeholder {
  color: #763ecd;
}
.cadUsuario .controle-cadUsuario .formContent .text-content:focus {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background-color: #ddd;
  border-bottom: 1px solid #763ecd;
  border-radius: 20px;
}
.cadUsuario .controle-cadUsuario .formContent .lblContent {
  margin-left: 18px;
}
.cadUsuario .controle-cadUsuario .btn-content {
  position: absolute;
  top: 75%;
  display: block;
  outline: none;
  border: 2px solid #fff;
  width: 250px;
  height: 40px;
  margin: 3px;
  background-color: #763ecd;
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all ease 0.3s;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 700px) {
  .cadUsuario .controle-cadUsuario .btn-content {
    top: 84%;
  }
}
.cadUsuario .controle-cadUsuario .btn-content:hover,
.cadUsuario .controle-cadUsuario .btn-content:focus {
  box-shadow: 0 0 5px #763ecd;
  color: #fff;
  transition: all ease 0.3s;
}

.cadUsuarioActive {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #93cb27;
  opacity: 1;
  pointer-events: all;
  z-index: 1;
  transition: all ease 0.3s;
}
.cadUsuarioActive span {
  position: absolute;
  width: 50px;
  height: 40px;
  left: 20px;
  top: 10px;
  text-align: center;
  font-size: 28px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1;
}
.cadUsuarioActive img {
  position: absolute;
  top: 0;
  aspect-ratio: 16/1;
}
@media screen and (max-width: 700px) {
  .cadUsuarioActive img {
    aspect-ratio: 16/7;
  }
}
.cadUsuarioActive .controle-cadUsuario {
  width: 50%;
  height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #763ecd;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .cadUsuarioActive .controle-cadUsuario {
    width: 90%;
    height: 85vh;
    margin-top: 25px;
  }
}
.cadUsuarioActive .controle-cadUsuario .formContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
}
.cadUsuarioActive .controle-cadUsuario .formContent .text-content {
  display: block;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #763ecd;
  width: 90%;
  height: 30px;
  margin: 19px;
  background-color: #fff;
  color: #763ecd;
  font-weight: normal;
  font-size: 16px;
  padding: 20px;
}
.cadUsuarioActive .controle-cadUsuario .formContent .text-content::-moz-placeholder {
  color: #763ecd;
}
.cadUsuarioActive .controle-cadUsuario .formContent .text-content::placeholder {
  color: #763ecd;
}
.cadUsuarioActive .controle-cadUsuario .formContent .text-content:focus {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background-color: #ddd;
  border-bottom: 1px solid #763ecd;
  border-radius: 20px;
}
.cadUsuarioActive .controle-cadUsuario .formContent .lblContent {
  margin-left: 18px;
}
.cadUsuarioActive .controle-cadUsuario .btn-content {
  position: absolute;
  top: 75%;
  display: block;
  outline: none;
  border: 2px solid #fff;
  width: 250px;
  height: 40px;
  margin: 3px;
  background-color: #763ecd;
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all ease 0.3s;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 700px) {
  .cadUsuarioActive .controle-cadUsuario .btn-content {
    top: 84%;
  }
}
.cadUsuarioActive .controle-cadUsuario .btn-content:hover,
.cadUsuarioActive .controle-cadUsuario .btn-content:focus {
  box-shadow: 0 0 5px #763ecd;
  color: #fff;
  transition: all ease 0.3s;
}

.pgLogin {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  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: 100vh;
  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;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
  animation: efeito 2s ease infinite;
}

.mrstPWD {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: #93cb27;
  transition: all 0.3s ease-in-out;
}
.mrstPWD header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #628b0f;
  box-shadow: 0 2px 2px #628b0f;
}
.mrstPWD header img {
  width: 250px;
  height: 100px;
}
.mrstPWD header hr {
  height: 50px;
  margin-right: 50px;
}
@media screen and (max-width: 700px) {
  .mrstPWD header hr {
    margin-right: 30px;
  }
}
.mrstPWD header span {
  font-size: 28px;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 400;
  text-shadow: 0 5px 5px #395303;
}
@media screen and (max-width: 700px) {
  .mrstPWD header span {
    font-size: 16px;
    text-align: center;
  }
}
.mrstPWD .recPWD {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 50%;
  height: 50%;
  background-color: #628b0f;
  border-radius: 10px;
  box-shadow: 0 3px 3px #628b0f;
}
@media screen and (max-width: 700px) {
  .mrstPWD .recPWD {
    width: 98%;
  }
}
.mrstPWD .recPWD .contentPWD {
  display: none;
  align-items: center;
  justify-content: center;
}
.mrstPWD .recPWD .contentPWD label {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  cursor: pointer;
  letter-spacing: 1.5px;
}
.mrstPWD .recPWD span {
  font-size: 20px;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 400;
  text-shadow: 0 5px 5px #395303;
}
.mrstPWD .recPWD .text-content {
  width: 70%;
  border-radius: 20px;
}
@media screen and (max-width: 700px) {
  .mrstPWD .recPWD .text-content {
    width: 95%;
  }
}

.mrstPWDActive {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: all;
  background-color: #93cb27;
  transition: all 0.3s ease-in-out;
}
.mrstPWDActive header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #628b0f;
  box-shadow: 0 2px 2px #628b0f;
}
.mrstPWDActive header img {
  width: 250px;
  height: 100px;
}
.mrstPWDActive header hr {
  height: 50px;
  margin-right: 50px;
}
@media screen and (max-width: 700px) {
  .mrstPWDActive header hr {
    margin-right: 30px;
  }
}
.mrstPWDActive header span {
  font-size: 28px;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 400;
  text-shadow: 0 5px 5px #395303;
}
@media screen and (max-width: 700px) {
  .mrstPWDActive header span {
    font-size: 16px;
    text-align: center;
  }
}
.mrstPWDActive .recPWD {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 50%;
  height: 50%;
  background-color: #628b0f;
  border-radius: 10px;
  box-shadow: 0 3px 3px #628b0f;
}
@media screen and (max-width: 700px) {
  .mrstPWDActive .recPWD {
    width: 98%;
  }
}
.mrstPWDActive .recPWD .contentPWD {
  display: none;
  align-items: center;
  justify-content: center;
}
.mrstPWDActive .recPWD .contentPWD label {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  cursor: pointer;
  letter-spacing: 1.5px;
}
.mrstPWDActive .recPWD span {
  font-size: 20px;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 5px 5px #395303;
}
.mrstPWDActive .recPWD .text-content {
  width: 70%;
  border-radius: 20px;
}
@media screen and (max-width: 700px) {
  .mrstPWDActive .recPWD .text-content {
    width: 95%;
  }
}

._flt1 ~ ._tFLT1 {
  margin-top: -43px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

._flt1:focus ~ ._tFLT1,
._flt1:valid ~ ._tFLT1 {
  transform: translateY(-26px);
  font-size: 13px;
}

._flt2 ~ ._tFLT2 {
  margin-top: -43px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

._flt2:focus ~ ._tFLT2,
._flt2:valid ~ ._tFLT2 {
  transform: translateY(-26px);
  font-size: 13px;
}

._flt3 ~ ._tFLT3 {
  margin-top: -43px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

._flt3:focus ~ ._tFLT3,
._flt3:valid ~ ._tFLT3 {
  transform: translateY(-26px);
  font-size: 13px;
}

._flt4 ~ ._tFLT4 {
  margin-top: -43px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

._flt4:focus ~ ._tFLT4,
._flt4:valid ~ ._tFLT4 {
  transform: translateY(-26px);
  font-size: 13px;
}

._flt5 ~ ._tFLT5 {
  margin-top: -43px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

._flt5:focus ~ ._tFLT5,
._flt5:valid ~ ._tFLT5 {
  transform: translateY(-26px);
  font-size: 13px;
}

._flt6 ~ ._tFLT6 {
  margin-top: -43px;
  color: #763ecd;
  font-size: 16px;
  cursor: text;
  transition: 0.3s ease-in-out;
}

._flt6:focus ~ ._tFLT6,
._flt6:valid ~ ._tFLT6 {
  transform: translateY(-26px);
  font-size: 13px;
}/*# sourceMappingURL=estilo_1.css.map */