/* Ajustes visuales del acceso privado. Mantiene el estilo del portal. */
.password-field {
  position: relative;
}

.password-field input {
  padding-right: 54px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  background: transparent;
  color: var(--text);
  outline: none;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
  pointer-events: none;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.text-button:hover,
.text-button:focus-visible {
  background: transparent;
  color: var(--text);
  outline: none;
}

.recovery-form {
  margin-top: 2px;
}

@media (max-width: 620px) {
  .password-toggle {
    right: 9px;
  }
}
