
body {
    background-color: #0b0f0e;
    color: #00FF88;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

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

.terminal-container {
    text-align: center;
    width: 90%;
    max-width: 700px;
}

.terminal-title {
    font-size: 2.5em;
    text-shadow: 0 0 10px #00FF88, 0 0 20px #00FF88;
}

.terminal-subtitle {
    margin-bottom: 20px;
    color: #00FF88;
    text-shadow: 0 0 8px #00FF88;
}

.wpform-container input,
.wpform-container textarea {
    background-color: #101412;
    border: 1px solid #00FF88;
    color: #00FF88;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    transition: box-shadow 0.3s ease;
}

.wpform-container input::placeholder,
.wpform-container textarea::placeholder {
    color: rgba(0, 255, 136, 0.6);
}

.wpform-container input:focus,
.wpform-container textarea:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.wpform-container button {
    background-color: transparent;
    color: #00FF88;
    border: 1px solid #00FF88;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.wpform-container button:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 1);
    text-shadow: 0 0 10px #00FF88;
}

.terminal-footer {
    margin-top: 25px;
    font-size: 0.9em;
    color: rgba(0, 255, 136, 0.6);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 40, 20, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeOverlay 0.8s ease-in-out forwards;
}

.overlay-content {
    text-align: center;
    color: #00FF88;
    text-shadow: 0 0 10px #00FF88, 0 0 25px #00FF88;
}

@keyframes fadeOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* --- WPForms Tactical Override --- */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea {
  background-color: #101412 !important;
  border: 1px solid #00FF88 !important;
  color: #00FF88 !important;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3) !important;
  transition: box-shadow 0.3s ease !important;
}

.wpforms-form input[type="text"]::placeholder,
.wpforms-form input[type="email"]::placeholder,
.wpforms-form textarea::placeholder {
  color: rgba(0, 255, 136, 0.6) !important;
}

.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form textarea:focus {
  outline: none !important;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.8) !important;
}

/* Deploy Mission button */
.wpforms-submit {
  background-color: transparent !important;
  color: #00FF88 !important;
  border: 1px solid #00FF88 !important;
  padding: 12px 30px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5) !important;
}

.wpforms-submit:hover {
  box-shadow: 0 0 25px rgba(0, 255, 136, 1) !important;
  text-shadow: 0 0 10px #00FF88 !important;
}
/* --- WPForms Label Glow Override --- */
.wpforms-form label {
  color: #00FF88 !important;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.6) !important;
  letter-spacing: 0.5px !important;
  font-weight: 500 !important;
  transition: text-shadow 0.3s ease !important;
}

/* Optional: label glow intensifies when its input is focused */
.wpforms-form input:focus + label,
.wpforms-form textarea:focus + label {
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.9) !important;
}

/* --- Soft Pulse Animation for Labels --- */
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    opacity: 0.9;
  }
  50% {
    text-shadow: 0 0 18px rgba(0, 255, 136, 0.9);
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    opacity: 0.9;
  }
}

.wpforms-form label {
  animation: pulseGlow 3.5s infinite ease-in-out;
}
/* === WPForms: Tactical overrides (callsign / name + other fields) ===
   Paste at the *end* of mission-terminal.css or Additional CSS.
*/

/* Generic inputs & textarea */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea,
.wpforms-form input[type="tel"] {
  background-color: rgba(16,20,18,0.92) !important;   /* stealth panel */
  color: #00FF88 !important;                           /* tactical text */
  border: 1px solid rgba(0,255,136,0.35) !important;
  box-shadow: 0 0 10px rgba(0,255,136,0.20) !important;
  padding: 10px !important;
  border-radius: 4px !important;
}

/* Placeholder color */
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
  color: rgba(0,255,136,0.55) !important;
}

/* Focus glow */
.wpforms-form input:focus,
.wpforms-form textarea:focus {
  outline: none !important;
  box-shadow: 0 0 20px rgba(0,255,136,0.85) !important;
  border-color: rgba(0,255,136,0.8) !important;
}

/* === Specific: Name (Callsign) multi-field (First / Last) ===
   Target WPForms structure: .wpforms-field-name .wpforms-field-row input
*/
.wpforms-form .wpforms-field-name .wpforms-field-row input {
  background-color: rgba(16,20,18,0.92) !important;
  color: #00FF88 !important;
  border: 1px solid rgba(0,255,136,0.35) !important;
  box-shadow: 0 0 10px rgba(0,255,136,0.18) !important;
  padding: 10px !important;
  height: 36px !important;
}

/* If your theme uses different structure (safer catch-all) */
.wpforms-form input[name*="name"],
.wpforms-form input[id*="name"],
.wpforms-form input[class*="name"] {
  background-color: rgba(16,20,18,0.92) !important;
  color: #00FF88 !important;
}

/* Labels (glow/pulse already applied earlier) - ensure visibility */
.wpforms-form label,
.wpforms-form .wpforms-field .wpforms-field-label {
  color: #00FF88 !important;
  text-shadow: 0 0 10px rgba(0,255,136,0.45) !important;
  font-weight: 500 !important;
}

/* Small helper: ensure required asterisk is visible */
.wpforms-form .wpforms-required-label {
  color: rgba(255,80,80,0.95) !important;
}

/* Button styling (ensure WPForms submit uses theme) */
.wpforms-form .wpforms-submit {
  background-color: transparent !important;
  color: #00FF88 !important;
  border: 1px solid rgba(0,255,136,0.7) !important;
  box-shadow: 0 0 12px rgba(0,255,136,0.35) !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
}

/* Mobile: slightly reduce glow to avoid harsh effects */
@media (max-width: 600px) {
  .wpforms-form input[type="text"],
  .wpforms-form textarea {
    box-shadow: 0 0 8px rgba(0,255,136,0.18) !important;
  }
}

