*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p{
  font-size: 16px;
  line-height: 1.8 !important;
}

.aero-form {
  max-width: 1100px;
  margin: 30px auto;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

/* SECTION */
.aero-form .section {
  margin-bottom: 35px;
}

.aero-form .title {
  font-size: 20px;
  font-weight: 600;
  border-left: 4px solid #5271ff;
  padding-left: 10px;
  margin-bottom: 20px;
}

/* GRID */
.aero-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* INPUT */
.aero-form input,
.aero-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
  margin: 10px 0px;
}

.aero-form input:focus,
.aero-form select:focus {
  border-color: #5271ff;
  box-shadow: 0 0 5px rgba(82,113,255,0.3);
}

/* FULL WIDTH */
.aero-form .full {
  grid-column: span 2;
}

/* CHECKBOX LIST */
.aero-form .options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.aero-form label {
  display: flex;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  flex-wrap: wrap;
  align-items: center;
}

.aero-form input[type="checkbox"],
.aero-form input[type="radio"] {
  width: auto;
}

/* REPRESENTATIVE BOX */
.aero-form .rep-box {
  background: #f9fbff;
  padding: 15px;
  border-radius: 10px;
}

/* FLEX AREA */
.aero-form .flex {
  display: flex;
  gap: 20px;
}

/* SUMMARY CARD */
.aero-form .summary {
  background: linear-gradient(135deg, #0b1d4d, #1d3ed8);
  color: white;
  padding: 20px;
  border-radius: 12px;
  min-width: 280px;
}

.aero-form .summary p {
  margin: 8px 0;
  font-size: 16px;
  color: #d0d0d0;
}

.aero-form .total {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}

/* TERMS */
.aero-form .terms {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

/* DECLARATION */
.aero-form .decl {
  font-size: 13px;
  background: #f4f7ff;
  padding: 15px;
  border-radius: 10px;
}

/* SIGN AREA */
.aero-form .sign-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.aero-form .sign-box div {
  border: 1px dashed #ccc;
  padding: 10px;
  /* height: 100px; */
}

.sign-seal{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTON */
.aero-form button input[type="submit"] {
  width: 100%;
  padding: 15px;
  border: none;
  background: linear-gradient(135deg, #5271ff, #2e4bff);
  color: white;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}

button{
  border: none;
  background: none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .aero-form .grid {
      grid-template-columns: 1fr;
  }

  .aero-form .full {
      grid-column: span 1;
  }

  .aero-form .options {
      grid-template-columns: 1fr;
  }

  .aero-form .flex {
      flex-direction: column;
  }

  .aero-form .sign-box {
      grid-template-columns: 1fr;
  }
}