/* 🌿 Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background: #f9fafb;
  color: #111827;
  line-height: 1.6;
}

/* 🌟 Container */
.w-full.max-w-lg {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.w-full.max-w-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* 🧭 Headings */
h2 {
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}

h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #dc2626;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* 📋 Input Fields */
.input-field {
  margin-bottom: 1.2rem;
}

.input-text {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  margin-bottom: 6px;
}

.text-field,
.dropdown-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #f9fafb;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  font-size: 15px;
}

.text-field:focus,
.dropdown-select:focus {
  outline: none;
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
  background-color: #fff;
}

/* ☑️ Checkbox */
.checklist {
  margin: 1rem 0;
}

.w-checkbox-input {
  accent-color: #ef4444;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

.w-form-label {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.4;
}

/* 🚀 Submit Button */
.form-btm {
  width: 100%;
  background: linear-gradient(90deg, #ef4444, #b91c1c);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.form-btm:hover {
  background: linear-gradient(90deg, #b91c1c, #991b1b);
  transform: translateY(-2px);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .w-full.max-w-lg {
    padding: 1.5rem;
    margin: 25px 10px;
  }

  h2 {
    font-size: 1.5rem;
  }
}
