/* PAGE BACKGROUND */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fb;
}

/* MAIN PAGE CONTAINER */
.page {
  max-width: 1100px;
  margin: 40px auto;
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* HEADER */
.header {
  text-align: center;
  margin-bottom: 25px;
}

/* LOGO SIZE (FIXED HERE) */
.application-logo {
  width: 110px;
  height: auto;
  margin-bottom: 10px;
}

/* COMPANY NAME */
.header h1 {
  font-size: 24px;
  margin: 8px 0;
}

/* REG TEXT */
.reg {
  font-size: 14px;
  color: #555;
}

/* MAIN TITLE */
.main-title {
  text-align: center;
  margin: 25px 0;
  font-size: 22px;
  color: #2f6f47;
}

/* GRID LAYOUTS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

/* LABELS */
label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

/* INPUTS */
input,
select {
  width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fafafa;
}

/* INPUT FOCUS */
input:focus,
select:focus {
  outline: none;
  border: 1px solid #2f6f47;
  background: white;
}

/* SECTION TITLES */
.section-title {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #1f2937;
}

/* TERMS BUTTON */
.terms-btn {
  background: #2f6f47;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 15px;
}

.terms-btn:hover {
  background: #3d8b5c;
}

/* TERMS BOX */
.terms-box {
  display: block;
  height: auto;
  max-height: none;
  overflow: visible;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}


/* CHECKBOX AREA */
.agree {
  margin-top: 15px;
}

/* SUBMIT BUTTON */
.submit-wrap {
  text-align: center;
  margin-top: 25px;
}

.submit-wrap button {
  background: #2f6f47;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 7px;
  font-size: 16px;
  cursor: pointer;
}

.submit-wrap button:hover {
  background: #4ea181;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .page {
    padding: 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .application-logo {
    width: 80px;
  }

  .header h1 {
    font-size: 18px;
  }

  .main-title {
    font-size: 18px;
  }
}
