/* Join-page specific styles only – WP theme handles everything else */

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Flash overlay after form submit */
.flash-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flash-message {
  color: white;
  font-size: 2rem;
  text-align: center;
  background: rgba(0,0,0,0.6);
  padding: 2rem 3rem;
  border-radius: 1rem;
  max-width: 90%;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  opacity: 0;
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}
