/* ============================================
   LEAD MAGNET SECTION
   ============================================ */
.lead-magnet-section {
  margin-bottom: 80vh;
}

/* Form Elements */
.form-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(100, 150, 255, 0.3);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-input:focus {
  outline: none;
  border-color: #4da6ff;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px rgba(77, 166, 255, 0.3);
}

.form-submit {
  background: linear-gradient(to bottom right, #4da6ff, #3a8cdb);
  border: none;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-submit:hover {
  background: linear-gradient(to bottom right, #5eb3ff, #4da6ff);
  box-shadow: 0 10px 30px rgba(77, 166, 255, 0.4);
}

.form-submit:active {
  transform: translateY(-1px);
}