html, body {
  background: #dedede;
  font-family: sans-serif;
  font-size: 16px;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header {
  padding: 1% 0% 0% 10%;
}

.header__menu {
  display: flex;
  gap: 10px;
}

.header__menu__link {
  font-family: var(--fuente-montserrat);
  font-size: 15px;
  font-weight: 900;
  color: var(--color-terciario);
  text-decoration: none;
}

.login-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 30%;
  font-size: 10px;
  text-align: start;
}

.login-container img {
  width: 50%;
  height: 50%;
  margin-bottom: 10px;
}

.btn-primary {
  background-color: #430057;
  border-color: #430057;
}

.btn-primary:hover {
  background-color: #2a0038;
  border-color: #2a0038;
}

.custom-popover {
  max-width: 100%;
  width: auto;
}

.custom-popover .popover-body {
  padding: 0;
}

.custom-popover img {
  display: block;
  max-width: 100%;
  height: auto;
}

.password-info {
  position: relative;
}

.ingreso {
  display: inline-block;
  margin-top: 5px;
  font-size: 1em;
  color: #6c757d;
  cursor: pointer;
}

.fa-info-circle {
  margin-left: 5px;
}

@media (max-width: 768px) {
  .header__menu {
      justify-content: center;
      padding-right: 0;
  }

  .login-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 90%;
    font-size: 10px;
    text-align: start;
  }
}