* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* background: linear-gradient(135deg, #0a0a1f 0%, #1a0a2e 50%, #0a0a1f 100%); */
  font-family: "Orbitron", sans-serif;
  color: white;
  min-height: 100vh;
  padding: 100px 20px 40px;
  background-color: black;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-in;
}

.page-header h1 {
  font-size: 2.8rem;
  color: #00f0ff;
  text-shadow: 0 0 20px #00f0ff, 0 0 40px #00f0ff;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.page-header p {
  font-size: 1.1rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-header a {
  color: #ff00ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-header a:hover {
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff;
}

/* Forms Container */
.forms-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 200px;
  padding: 0 20px;
  margin-bottom: 50px;
}

.form-box {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo Section - Positioned Above Form */
.form-logo {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.logo-placeholder {
  width: 300px;
  height: 300px;
  /* border: 3px dashed #ff00ff; */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ff00ff;
  text-align: center;
  padding: 0;
  /* background: rgba(255, 0, 255, 0.05); */
  transition: all 0.3s ease;
  overflow: hidden;
}

.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ozchat .logo-placeholder {
  border-color: #00f0ff;
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.05);
}

.logo-placeholder:hover {
  /* transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3); */
}

.ozchat .logo-placeholder:hover {
  /* box-shadow: 0 0 20px rgba(0, 240, 255, 0.3); */
}

/* Form Box */
.form-box > form,
.form-box > div:not(.form-logo) {
  width: 100%;
}

form {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid #ff00ff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.3),
    inset 0 0 20px rgba(255, 0, 255, 0.1);
  animation: fadeInUp 1s ease-in;
  transition: all 0.3s ease;
}

form:hover {
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.5),
    inset 0 0 30px rgba(255, 0, 255, 0.2);
  transform: translateY(-5px);
}

.ozchat form {
  border-color: #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3),
    inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.ozchat form:hover {
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.5),
    inset 0 0 30px rgba(0, 240, 255, 0.2);
}

/* Form Heading */
.form-box h2 {
  font-size: 1.6rem;
  color: #ff00ff;
  text-shadow: 0 0 15px #ff00ff;
  margin-bottom: 10px;
  text-align: center;
}

.form-box.ozchat h2 {
  color: #00f0ff;
  text-shadow: 0 0 15px #00f0ff;
}

.form-box .subtitle {
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Form Elements */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #00ffff;
  font-weight: bold;
  font-size: 0.95rem;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  text-align: start;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #00ffff;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: "Orbitron", sans-serif;
  transition: all 0.3s ease;
}

.form-group select {
  background: rgba(0, 0, 0, 0.7) !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  background-image: none;
  background-position: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff00ff;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group.optional label::after {
  content: " (optional)";
  color: #888;
  font-size: 0.85rem;
  font-weight: normal;
}

/* File Upload */
.file-upload {
  position: relative;
  overflow: hidden;
}

.file-upload input[type="file"] {
  position: absolute;
  left: -9999px;
}

.file-upload-label {
  display: block;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed #00ffff;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-label:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff00ff;
}

.file-upload-label i {
  margin-right: 8px;
}

.file-name {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #00ff66;
  text-align: center;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 15px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(45deg, #ff00ff, #ff00aa);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
  background: linear-gradient(45deg, #ff00aa, #ff00ff);
}

.ozchat .submit-btn {
  background: linear-gradient(45deg, #00f0ff, #0099ff);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.ozchat .submit-btn:hover {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
  background: linear-gradient(45deg, #0099ff, #00f0ff);
}

/* Safety Notice */
.safety-notice {
  margin-top: 15px;
  padding: 12px;
  background: rgba(255, 100, 100, 0.1);
  border-left: 3px solid #ff3366;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #ffcccc;
  line-height: 1.5;
}

/* Success/Error Messages */
.message {
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  display: none;
  animation: slideDown 0.5s ease;
}

.message.success {
  background: rgba(0, 255, 102, 0.2);
  border: 2px solid #00ff66;
  color: #00ff66;
}

.message.error {
  background: rgba(255, 51, 102, 0.2);
  border: 2px solid #ff3366;
  color: #ff6699;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .forms-container {
    flex-direction: column;
    gap: 30px;
  }

  body {
    padding: 80px 15px 30px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  form {
    padding: 20px;
  }

  .form-box h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.5rem;
  }

  .form-box h2 {
    font-size: 1.1rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 12px;
  }

  .logo-placeholder {
    width: 120px;
    height: 120px;
    font-size: 0.8rem;
  }
}
