body {
  background-color: #000814;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

.text-neon {
  color: #00ffc3;
  text-shadow: 0 0 10px #00ffc3, 0 0 20px #00ffc3;
}

.btn-neon {
  background-color: transparent;
  border: 2px solid #00ffc3;
  color: #00ffc3;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  background-color: #00ffc3;
  color: #000;
}

.form-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  position: relative;
  z-index: 2;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(0,255,204,0.3);
}

label {
  color: #00ffc3;
}

input, select {
  background-color: transparent !important;
  border: 1px solid #00ffc3;
  color: #ffffff !important;
}

input::placeholder, select option {
  color: #ffffff !important;
}

.spiral-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 1000%;
  height: 1000%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.spiral {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotateSpiral 40s linear infinite;
  transform: translate(-50%, -50%);
  opacity: 0.35;
}

@keyframes rotateSpiral {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}


  /* Dark theme selects */
.form-select, select {
  background-color: #0f172a;   /* dark surface */
  color: #e5e7eb;              /* text */
  border: 1px solid #334155;   /* subtle border */
}

/* Opened list items (most browsers) */
.form-select option,
select option,
.form-select optgroup,
select optgroup {
  background-color: #0f172a;
  color: #e5e7eb;
}

/* Focus/hover states */
.form-select:focus, select:focus {
  border-color: #22d3ee;       /* accent */
  box-shadow: 0 0 0 .2rem rgba(34, 211, 238, .25);
  outline: none;
}

/* Disabled */
.form-select:disabled, select:disabled {
  background-color: #111827;
  color: #9ca3af;
  border-color: #374151;
}
