/* Contact Form Styling */

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.contact-intro {
  color: #C0C0C0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-form {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid #00FF00;
  border-radius: 8px;
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #00FF00;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: #000;
  border: 1px solid #00FF00;
  border-radius: 4px;
  color: #00FF00;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00FF00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-button {
  background: #00FF00;
  color: #000;
  border: none;
  padding: 14px 32px;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.submit-button:hover {
  background: #00CC00;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  background: #666;
  cursor: not-allowed;
  opacity: 0.5;
}

.form-status {
  margin-top: 20px;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00FF00;
  color: #00FF00;
}

.form-status.error {
  display: block;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #FF0000;
  color: #FF0000;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 15px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .submit-button {
    width: 100%;
  }
}
