input,
input[type="email"],
input[type="password"],
textarea {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(204, 102, 255, 0.2) !important;
  color: white !important;
  border-radius: 15px !important;
  padding: 12px 18px;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
  opacity: 0.8;
}

input:focus,
textarea:focus {
  border-color: #cc66ff !important;
  box-shadow: 0 0 15px rgba(204, 102, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  outline: none !important;
}


body {
  background: url('/assets/images/index_bg.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow-x: hidden;
}

.main-content {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 1200px;
  box-shadow: 0 0 40px rgba(204, 102, 255, 0.3);
}

.section-title {
  font-size: 2.5rem;
  text-shadow: 0 0 10px #cc66ff;
  margin-bottom: 20px;
}

.hero-section {
  padding: 100px 20px 60px;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 15px #cc66ff;
}

.lead {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 25px;
}

.btn-neon {
  background-color: #cc66ff;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 30px;
  box-shadow: 0 0 10px #cc66ff, 0 0 20px #cc66ff inset;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  background-color: #a300cc;
  box-shadow: 0 0 20px #cc66ff, 0 0 30px #cc66ff inset;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #cc66ff55;
}

.feature-box p {
  color: #eee;
}

.cta-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(204, 102, 255, 0.2);
}

/* Enhanced form styling for ultimate seductive glass effect */
form {
  background: rgba(255, 255, 255, 0.04);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(204, 102, 255, 0.25);
  color: white;
  border: 1px solid rgba(204, 102, 255, 0.15);
}

.form-label {
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 4px #cc66ff;
  margin-bottom: 5px;
}

.form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(204, 102, 255, 0.2);
  color: white;
  border-radius: 15px;
  padding: 12px 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #ddd;
  opacity: 0.8;
}

.form-control:focus {
  border-color: #cc66ff;
  box-shadow: 0 0 15px rgba(204, 102, 255, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}