body {
  display: flex;
  justify-content: center;
  /* Alinha horizontalmente */
  align-items: center;
  /* Alinha verticalmente */
  margin: 0;
  height: 100vh;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;

}

.error {
  color: red;
  text-align: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
  "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 10px;
  font-weight: 500;

}

.error2 {
  color: red;
  text-align: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
  "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 500;

}

.mensagem {
  color: red;
  text-align: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
  "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 500;

}

.form-container {
  width: 350px;
  height: 600px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px 30px;
  display: inline-block;
  align-items: center;
  align-content: center;
  /* margin-top: 50px; padding: 20px; border: 1px solid #ccc; border-radius: 5px; */
}

.title {
  text-align: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 10px 0 30px 0;
  font-size: 28px;
  font-weight: 800;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}

.input-form {
  border-radius: 20px;
  border: 1px solid #c0c0c0;
  outline: 0 !important;
  box-sizing: border-box;
  padding: 12px 15px ;
  width: 100%;  height: 45px;
  display: flex;
  /* align-items: center; */
  transition: 0.2s ease-in-out;
  justify-content: space-between;
  
}

.input {
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  
  
}

input:-webkit-autofill {
  background-color: transparent !important; /* Remove o fundo */
  box-shadow: 0 0 0px 1000px white inset; /* Ajuste a cor de fundo */
  color: inherit !important; /* Mantém a cor do texto */
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid #2d79f3;
}

.form-label {
  margin-bottom: -28px;
  margin-left: 20px;
  display: inline;
  z-index: 9999;

}

.form-span {
  background-color: #fff;
  color: #8d8d8d;
  font-size: 15px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
 "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.page-link {
  text-decoration: underline;
  margin: 0;
  text-align: end;
  color: #747474;
  text-decoration-color: #747474;
  text-decoration: none;
}

.page-link-label {
  cursor: pointer;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.page-link-label:hover {
  color: #000;
}

 a {
  text-decoration: none;
  color: #000
}
a:hover {
  text-decoration:underline;
}
.form-btn {
  padding: 10px 15px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  border-radius: 20px;
  border: 0 !important;
  outline: 0 !important;
  background: teal;
  color: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-btn:active {
  box-shadow: none;
}

.sign-up-label {
  margin: 0;
  font-size: 10px;
  color: #747474;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.sign-up-link {
  margin-left: 1px;
  font-size: 11px;
  text-decoration: underline;
  text-decoration-color: rgb(58, 61, 61);;
  color:rgb(58, 61, 61);;
  cursor: pointer;
  font-weight: 800;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.buttons-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 20px;
  gap: 15px;
}

#togglePassword{
  background-color: transparent;
  width: 10px;
  margin-right: 12px;
}






#requisitosSenha {
  font-size: 10px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 0 0 0 20px;
  color: #8d8d8d;
  margin: -10px -10px -10px 20px;
  line-height: 5px;
}



.input-form button {
  background: none; /* Remove o fundo */
  border: none; /* Remove a borda */
  padding: 0; /* Remove qualquer padding extra */
  cursor: pointer; /* Mantém o cursor como ponteiro */
  outline: none; /* Remove contorno ao focar */
}

.input-form button i {
  color: #000; /* Define a cor do ícone */
}