* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
* a, *:hover, *:active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

body {
  background-color: #028C50;
  background-image: var(--imagem-fundo);
  background-attachment: fixed;
  background-position: center;
  background-clip: border-box;
  background-size: cover;
  font-family: var(--font-family);
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100vh;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 350px;
  height: auto;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(8.7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.form-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.form-row-inner-btn {
  display: flex;
  width: 100%;
  position: relative;
}
.form-row-inner-btn button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
  color: #028C50;
}
.form-cols {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.form-cols button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 35px;
  border-radius: 3px;
  background-color: #028C50;
  border: 1px solid #028C50;
  color: #FFFFFF;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}
.form-cols a {
  display: block;
  color: #028C50;
  font-weight: bold;
  font-size: 0.75rem;
}
.form label {
  display: block;
  width: 100%;
  color: #028C50;
  font-weight: bold;
}
.form input[type=text],
.form input[type=email],
.form input[type=password] {
  display: block;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 10px;
  border-radius: 3px;
}

.checkbox {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox input:checked + .checkmark {
  background-color: #028C50;
}
.checkbox input:checked + .checkmark:after {
  display: block;
}
.checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #FFFFFF;
  border-radius: 3px;
  transition: background-color 0.2s;
}
.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/*# sourceMappingURL=estilo.norte.dev.br.css.map */
