* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  transition: 0.25s;
}

body {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  background-color: #000000;
}

.sessaoFormulario {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.sessaoFormulario .conteudo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 90%;
  height: auto;
  max-width: 345px;
  margin: 0 1rem;
}
.sessaoFormulario .conteudo .formulario {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem;
  background-color: rgba(0, 0, 0, 0.5019607843);
  box-shadow: inset 0px 0px 25px 0px #000000;
  border: 1px solid #121212;
  border-radius: 24px;
}
.sessaoFormulario .conteudo .formulario #inputSenha {
  width: 100%;
  height: 54px;
  background-color: #000000;
  border: 1px solid #121212;
  border-radius: 12px;
  color: #ffffff;
  font-size: 2.5rem;
  text-align: center;
}
.sessaoFormulario .conteudo .formulario .btnAcessar {
  width: 100%;
  height: 54px;
  background-color: #1a1a1a;
  border: 3px solid #1a1a1a;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
.sessaoFormulario .conteudo .formulario .btnAcessar.ativo {
  cursor: pointer;
  background: linear-gradient(90deg, rgb(29, 224, 120) 0%, rgb(24, 206, 161) 28%, rgb(18, 187, 202));
  border: none;
  z-index: 1;
}
.sessaoFormulario .conteudo .formulario .btnAcessar.ativo::before {
  width: calc(100% + 3px);
  height: 57px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: linear-gradient(90deg, rgb(29, 224, 120) 0%, rgb(24, 206, 161) 28%, rgb(18, 187, 202));
}/*# sourceMappingURL=estruturas.css.map */