/* ===== Form Container ===== */
.hire-form-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.03);
}

/* ===== Form Header ===== */
.hire-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.hire-form-header .form-heading {
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

.hire-form-header .form-subtext {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

/* ===== Form Row ===== */
.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 8px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: #007bff;
  outline: none;
  background: #fefefe;
}

/* ===== Specific Fields ===== */
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== File Input Fix ===== */
input[type="file"] {
  padding: 6px;
  font-size: 14px;
}

/* ===== Form Hint (Optional) ===== */
small.form-hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #888;
}

/* ===== Submit Button ===== */
.form-submit {
  margin-top: 20px;
  text-align: center;
}

.form-submit button {
  padding: 10px 28px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit button:hover {
  background: #005bbf;
}

/* ===== Responsive (Mobile) ===== */
@media (max-width: 600px) {
  .hire-form-box {
    padding: 20px;
  }

  .form-submit button {
    width: 100%;
  }
}
