/*
Theme Name: Twenty Twenty-Four Child
Template: twentytwentyfour
*/
.apply-job-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.apply-job-form h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.apply-job-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #555;
}

.apply-job-form input[type="text"],
.apply-job-form input[type="email"],
.apply-job-form textarea,
.apply-job-form input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.apply-job-form input[type="text"]:focus,
.apply-job-form input[type="email"]:focus,
.apply-job-form textarea:focus {
  border-color: #0073aa;
  outline: none;
}

.apply-job-form button,
.apply-job-form input[type="submit"] {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.apply-job-form button:hover,
.apply-job-form input[type="submit"]:hover {
  background: #005f7f;
}

.apply-job-form input[type="text"]:hover,
.apply-job-form input[type="email"]:hover,
.apply-job-form textarea:hover {
  box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.job-detail h1 {
   text-align: center;
   font-size: 32px;
   color: #333;
   margin-bottom: 20px;
}

/* Container form */
.frontend-admin-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

/* Label */
.frontend-admin-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  color: #333;
}

/* Input & Select */
.frontend-admin-form input[type="text"],
.frontend-admin-form textarea,
.frontend-admin-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.frontend-admin-form input[type="text"]:focus,
.frontend-admin-form textarea:focus,
.frontend-admin-form select:focus {
  border-color: #0073aa;
  box-shadow: 0 0 3px #0073aa;
}

/* Submit button */
.frontend-admin-form input[type="submit"],
.frontend-admin-form button {
  background-color: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.frontend-admin-form input[type="submit"]:hover,
.frontend-admin-form button:hover {
  background-color: #005d80;
}

.job-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.job-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.job-item:last-child {
  border-bottom: none;
}


