.career-header {
  padding: 40px 0 10px;
  text-align: center;
}

.career-header h1 {
  color: var(--primary);

  font-size: 2.2rem;
  font-weight: 700;
}

.career-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}


.career-form {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
  border: 1px solid var(--bg-body);
}

.row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  margin-bottom: 18px;
}

label {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);

  outline: none;
}


.upload-box {
  border: 2px dashed LightGray;
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  cursor: pointer;
  background: var(--bg-body);
  transition: all 0.2s;
}

.upload-box:hover {
  border-color: var(--secondary);
  background: #fff;
}

.upload-icon {
  font-size: 30px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.upload-box input {
  margin-top: 10px;
  border: none;
  background: transparent;
}

.note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
}


.submit-btn {
  margin-top: 20px;
  background: var(--primary);
  color: white;
  padding: 14px 25px;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 20px auto 0 auto;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--primary-dark);
}


.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  width: 320px;
  box-shadow: var(--shadow-lg);
}

.popup-content h2 {
  color: var(--secondary);
  margin-bottom: 10px;
}

.popup-content button {
  padding: 10px 24px;
  background: var(--primary);
  border: none;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  font-weight: 600;
}


@media (max-width: 900px) {
  .container {
    padding: 16px;
  }

  .career-header {
    text-align: center;
  }

  .row {
    flex-direction: column;
    gap: 0;
  }

  .field {
    width: 100%;
  }
}


@media (max-width: 600px) {
  .career-header h1 {
    font-size: 1.6rem;
  }

  .career-form {
    padding: 18px;
  }
}