.career-container {
  margin: 70px 10%;
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 10px;
}

.career-card {
  position: relative;
  width: 250px;
  height: 320px;
  border-radius: 20px;
}

.career-card img {
  z-index: -1;
  position: relative;
  width: 100%;
  height: 90%;
}

.upload {
  color: black;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px 0px rgba(16, 28, 185, 0.37);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  text-align: center;
  transition: height 500ms ease-in-out;
}

.upload:hover {
  z-index: 1;
  height: 100%;
}

.upload .civil-head {
  margin-bottom: 25px;
  font-family: "Courier New", Courier, monospace;
  font-size: 22px;
  font-weight: 700;
}

.upload input[type="text"],
span {
  font-weight: bold;
  font-size: 16px;
  padding: 5px 10px;
}

#file::-webkit-file-upload-button {
  position: relative;
  border: none;
  font-weight: 700;
  font-size: 14px;
  margin: 20px;
  padding: 10px;
  background-color: #fc036b;
  color: white;
}

#file::-webkit-file-upload-button::before {
  position: absolute;
  left: 20px;
  width: 20px;
}

.upload input[type="submit"] {
  border-radius: 5px;
  margin-top: 10px;
  background-color: #fc036b;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 25px;
  color: white;
  border: none;
}
