body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  background-color: #0b0f19;
  color: #fff;
}

.job-details-section {
  padding: 60px 0;
  margin-top: 6rem;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.job-type {
  color: #9aa0a6;
  font-size: 18px;
}

.job-header h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0;
}

.job-tags span {
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  color: #a6a6a6;
  border: 1px solid #1f5075;
}

.tech-stack {
  margin-top: 30px;
  font-size: 16px;
  color: #a6a6a6;
}

.career-form-section {
  padding: 0px 0;
}

.form-title {
  font-size: 22px;
  margin-bottom: 30px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  color: #cfcfcf;
}

input,
textarea {
  width: 100%;
  background: linear-gradient(90deg, #07141b, #0a1d27);
  border: 1px solid #0d3c58;
  border-radius: 10px;
  padding: 14px;
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #7f8a91;
}

.upload-box {
  margin-top: 10px;
}

.file-info {
  font-size: 16px;
  color: #8c8c8c;
  margin-bottom: 10px;
}

.upload-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}

.submit-btn {
  position: relative;
  margin-top: 20px;
  padding: 14px 30px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgb(22, 174, 239);
  z-index: -1;
  transition: 0.9s ease;
  border-radius: 30px;
}

/* Hover effect */
.submit-btn:hover::before {
  width: 100%;
}

/* Text color change */
.submit-btn:hover {
  color: #000;
}
@media (max-width: 992px) {
  .job-header h1 {
    font-size: 3rem;
  }

  .job-type {
    font-size: 16px;
  }

  .job-list {
    padding: 40px;
  }

  .career-title1 {
    font-size: 4rem;
    text-align: center;
  }

  .career-desc1 {
    font-size: 18px;
    text-align: center;
  }
}

/* ===== MOBILE ===== */

@media (max-width: 576px) {
  label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: #cfcfcf;
  }
  .form-title {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .job-details-section {
    padding: 1px 0;
    margin-top: 6rem;
    margin-left: 25px;
  }
  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-header h1 {
    font-size: 2rem;
  }

  .job-type {
    font-size: 14px;
  }

  .job-tags span {
    display: inline-block;
    margin-bottom: 8px;
  }

  .job-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .career-title1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .career-desc1 {
    font-size: 16px;
    margin: 15px 0;
    text-align: center;
  }

  .career-box {
    padding: 25px;
  }

  .job-list {
    padding: 25px;
  }

  .career-text {
    text-align: left;
    margin-left: 0;
  }
  .mobile-hide {
    display: none;
  }

  .submit-btn {
    margin-top: 20px;
    padding: 14px 30px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    border-radius: 30px;
    font-size: 10px;
    cursor: pointer;
    transition: 0.3s;
  }
  .career-form-section {
    margin: 20px !important;
  }
}
