.email-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.email-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.email-overlay__box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #df7694;
  border-top-color: transparent;
  border-radius: 50%;
  margin: 0 auto 10px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#emailOverlayClose {
  margin-top: 15px;
  background: #df7694;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

#emailOverlayClose:hover {
  background: #c25f7e;
}

.hidden {
  display: none;
}
