* {
  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;
}

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

.choice {
  background: linear-gradient(180deg, #E0F7FA 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  color: #3AB0A6;
  border: none;
  width: 150px;
  margin-bottom: 12px;
}

.contenedor {
  margin-top: 24px;
  width: 80%;
  /* Reducir el ancho máximo */
  padding: 1rem;
  background: linear-gradient(180deg, #E0F7FA 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.title {
  color: #3AB0A6;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.content {
  margin-bottom: 1.2rem;
  text-align: left;
}

.label {
  color: gray;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.input {
  width: 100%;
  padding: 0.5rem;
  background: linear-gradient(180deg, #E0F7FA 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  color: #3AB0A6;
  border: none;
  margin-top: 0.3rem;
}

.password-container {
  position: relative;
}

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

#aviso {
  font-size: 0.85rem;
  color: #d9534f;
  display: none;
  /* Oculto por defecto */
}

.content-check {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.check {
  margin-right: 0.5rem;
}

.check-l {
  color: #495057;
}

.terminos {
  color: #1C3144;
  text-decoration: none;
  font-weight: bold;
}

.terminos:hover {
  color: #3AB0A6;
}

.content-btn {
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #3AB0A6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

@media (min-width: 768px) {
  .contenedor {
    padding: 1rem;
    margin-top: 5%;
    max-width: 500px;
  }
}