.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #e5e5e5;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.auth-modal-content {
  padding: 2rem;
}

.auth-modal-content h2 {
  font-size: 2rem;
  background: linear-gradient(to right, #f39c12, #87ceeb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.auth-modal-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.auth-modal-actions a {
  text-decoration: none;
  color: #000;
  background-color: #f39c12;
  padding: 0.8em 1.5em;
  border-radius: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.auth-modal-actions a:hover {
  box-shadow: 0 0 25px #f39c12;
  filter: brightness(1.1);
}
