.smda-form-page {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #334155;
  overflow-x: hidden;
}

/* hero, form, inputs – same as diya hua */
.smda-form-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 20px 20px 80px 20px;
  text-align: center;
  position: relative;
}

.smda-form-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 1;
}

.smda-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.smda-hero-title {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 15px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.smda-hero-desc {
  color: #cbd5e1;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;
}

.smda-form-section {
  padding: 60px 20px 100px 20px;
}

.smda-form-container {
  max-width: 850px;
  margin: -80px auto 0 auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 10;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.smda-form-header {
  background: #f8fafc;
  padding: 30px 40px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smda-form-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
}

.smda-form-header span {
  font-size: 0.85rem;
  color: #ef4444;
  font-weight: 600;
}

.smda-registration-form {
  padding: 40px;
}

.smda-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.smda-form-group {
  display: flex;
  flex-direction: column;
}

.smda-form-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.smda-req {
  color: #ef4444;
}

.smda-input {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #334155;
  padding: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.smda-input:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}

.smda-input::placeholder {
  color: #94a3b8;
}

select.smda-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 40px;
}

.smda-form-footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #e2e8f0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smda-disclaimer {
  font-size: 0.85rem;
  color: #64748b;
  text-align: left;
  max-width: 400px;
  line-height: 1.5;
}

.smda-submit-btn {
  background: #f59e0b;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 15px 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.smda-submit-btn:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(245, 158, 11, 0.3);
}

/* Success / payment info */
.smda-or-message {
  margin-top: 20px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.smda-or-message.success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.smda-or-message.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.smda-or-payment-info {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  font-size: 0.95rem;
  color: #0f172a;
}

.smda-or-qr-wrap img {
  margin-top: 10px;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .smda-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .smda-form-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .smda-disclaimer {
    text-align: center;
    max-width: 100%;
  }
  .smda-submit-btn {
    width: 100%;
    justify-content: center;
  }
  .smda-registration-form {
    padding: 30px 20px;
  }
  .smda-form-header {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
