@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');

.pwd-footer-link {
  text-align: center;
  font-size: 8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  background-color: #CFECE4;
  color: #C0E2DA;
  padding: 10px 0;
  pointer-events: none;
}

.pwd-footer-link a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
  opacity: 0.08;
  transition: opacity 0.3s ease, text-decoration-color 0.3s ease;
}

.pwd-footer-link a:hover {
  opacity: 0.2;
  text-decoration: underline;
  text-decoration-color: #C0E2DA;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
}

@media (max-width: 480px) {
  .pwd-footer-link {
    font-size: 8px;
  }
}