.recruitment-form {
  color: #333;
}

.form-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #f9f9f9;
  color: #333;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

textarea {
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
  background-color: #fff;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  color: #555;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  cursor: pointer;
}

input[type="date"]::before {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.optional {
  color: #999;
  font-weight: normal;
}

.char-limit {
  text-align: right;
  color: #999;
  font-size: 13px;
  margin-top: 5px;
}

.upload-box {
  border: 2px dashed #ccc;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  position: relative;
  background: #fafafa;
  margin-bottom: 10px;
}

.upload-box input[type="file"] {
  width: 100%;
  opacity: 0;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.upload-text {
  font-size: 16px;
  color: #0066cc;
  pointer-events: none;
}

small {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 4px;
}

.form-actions {
  text-align: right;
  margin-top: 20px;
}

.submit-btn {
  padding: 10px 20px;
  background: #e60000;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

.submit-btn:hover {
  background: #cc0000;
}

.job-openings {
  width: 100%;
  margin: auto;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 140px 0 140px;
}

.job-number {
  border: 1px solid red;
  color: red;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  flex-wrap: wrap;
}

.job-card-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 300px;
}

.job-details h3 {
  margin: 0;
  font-size: 1.2em;
}

.job-details p {
  margin: 5px 0 0;
  font-size: 0.9em;
  color: #666;
}

.job-card a.job-apply {
  background-color: red;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .job-list {
    margin: 0 30px 0 30px;
  }
}
