* {
  font-family: "Poppins", sans-serif;
}

.navbar {
  background: linear-gradient(180deg, #E0F7FA 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
}

.titulo {
  color: #3AB0A6;
  font-size: 20px;
  margin: 0;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}

.password-container {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #1C3144;
}

@media (min-width: 600px) {
  .toggle-password {
    position: absolute;
    right: 30%;
    top: 51.5%;
    transform: translateY(-50%);
  }
}

.body-login {
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("https://img.freepik.com/fotos-premium/cinta-conocimiento-diabetes-terrones-azucar_185193-15154.jpg");
  background-position: center;
  background-size: cover;
}

.loginForm {
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  background: linear-gradient(180deg, #E0F7FA 0%, #ffffff 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.labelLogin {
  color: #011936;
  font-size: 1.1rem;
  font-weight: 600;
}

.inputLogin {
  margin-top: 0.3rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ced4da;
  font-size: 1rem;
  color: #495057;
}

.btnLogin {
  display: inline-block;
  background-color: #3AB0A6;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.btnLogin:hover {
  background-color: #16303D;
  color: white;
}

.links {
  text-decoration: none;
  color: #1C3144;
  font-size: 1rem;
  font-weight: 700;
}

.texto {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .loginForm {
    width: 40%;
    padding: 2rem;
  }

  .toggle-password {
    right: 20px;
    top: 50%;
  }
}