/* ───────────────────────────────────────────────────────────
   public_html/form/application/styles.css
   Standalone CSS for “Job Application” form with Quotation‐style header
────────────────────────────────────────────────────────── */

/* 1) Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  background: #f5f5f5;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* 2) Container Card */
.container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* 3) Quotation‐style Header (reused for Application) */
.form-header-quote {
  background-color: #000; /* solid black/dark‐green backdrop */
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-header-quote img.logo {
  height: 40px;
  width: auto;
}

.form-header-quote .divider {
  width: 1px;
  height: 50px;
  background: #fff;
  opacity: 0.3;
}

.form-header-quote .title-section {
  color: #fff;
}

.form-header-quote .title-section h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-header-quote .title-section p {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

/* 4) Form Body */
form {
  padding: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f2f2f2;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #acff03; /* neon green on focus */
  background: #fff;
}

/* Placeholder text slightly darker gray */
.form-group input::placeholder {
  color: #888;
}

/* 5) Required asterisk styling */
.form-group label .required-star {
  color: #e74c3c;
}

/* 6) Radio Group (Gender) */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
}

.radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #0b1e0c; /* dark green */
}

/* 7) Submit Button */
.btn-submit {
  display: block;
  width: 100%;
  padding: 14px 0;
  background-color: #acff03; /* neon green */
  color: #0b1e0c;             /* dark green text */
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
}

.btn-submit:hover {
  background-color: #98e603;
}

/* 8) Footer */
.form-footer {
  background-color: #0b1e0c; /* dark green */
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.9rem;
}

.form-footer p {
  line-height: 1.4;
}

/* 9) Responsive Tweaks */
@media (max-width: 480px) {
  .container {
    margin: 20px 10px;
  }
  .form-header-quote {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .form-header-quote .divider {
    display: none;
  }
  .form-header-quote img.logo {
    height: 36px;
  }
  .form-header-quote .title-section h1 {
    font-size: 1.5rem;
  }
  .btn-submit {
    font-size: 1rem;
    padding: 12px 0;
  }
  .form-footer {
    font-size: 0.85rem;
    padding: 12px 10px;
  }
}
