.auth-container {
  max-width: 720px;
  margin-top: 6%;
}

.policies-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.4s ease;
}

.policies-card-body {
  padding: 30px;
}

.policies-logo {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--mfa-blue);
  letter-spacing: -2px;
  text-decoration: none;
}

.policies-logo .accent {
  color: var(--mfa-teal);
}

h5 {
  color: var(--mfa-blue);
  font-weight: 600;
}

p, li {
  font-size: 0.95rem;
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}