
.application-form-wrapper {
  background: #f7f6ee;
  padding: 10px 15px;
  border-radius: 8px; 
  color: #1b1b1b;
  max-width: 900px;
  margin: auto;
}

.label-color{
  color: #000000;
}

.main-title {
  text-align: center;
  font-size: 34px;
  color: #0b7a3d;
  font-weight: 800;
}

.sub-title {
  text-align: center;
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.form-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin: 15px 0 25px;
}

.section-head {
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #999;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 6px;
}

.deadline {
  font-size: 14px;
  font-weight: 600;
}

.input {
   width: 100%;
  border: none;
  /* border-bottom: 1px dashed #444; */
  padding: 4px;
  margin-bottom: 14px;
  outline: none;
  font-size: 15px;
}

/* .line-input {
  width: 100%;
  border: none;
  border-bottom: 1px dashed #444;
  padding: 4px;
  margin-bottom: 14px;
  outline: none;
  font-size: 15px;
} */

.long {
  height: 48px;
}

.row-2 {
  display: flex;
  gap: 18px;
}

.row-2 > div {
  flex: 1;
}

.section-title {
  margin: 28px 0 10px;
  font-weight: 800;
  border-bottom: 1px solid #888;
  padding-bottom: 4px;
}

.stand-desc {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.section-fee {
  margin-top: 20px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  padding: 8px 0;
  font-weight: 700;
}

.coex-fee {
  float: right;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.textarea {
  width: 100%;
  height: 130px;
  border: 1px solid #555;
  border-radius: 4px;
  margin-bottom: 16px;
}

.submit-btn {
  background: #0b7a3d;
  border: none;
  padding: 13px 26px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #096532;
}

.footer-org {
  text-align: center;
  font-size: 15px;
  margin-top: 25px;
  line-height: 1.5;
  font-weight: 600;
}
.form-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

/* Right side download buttons */
.download-buttons-right {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
}

.download-btn {
  background: #0b7a3d;
  color: white;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.download-btn:hover {
  background: #085c2c;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .form-header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .download-buttons-right {
    align-items: center;
    margin-top: 10px;
  }

  .application-form-wrapper{
    padding: 12x;
  }
}
 
