.career-head {
  height: 200px;
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-head-content {
  height: 150px;
  background-color: white;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  align-items: center;
  color: #183f66;
  font-weight: 400;
  font-size: 50px;
  justify-content: center;
}
.management-team h2 { font-size: 45px; }

.career-content {
  height: 400px;
  background-color: #183f66;
  display: flex;
  align-items: center;
  justify-content: center;
}
.f-para {
  color: white;
  font-size: 12px;
  text-align: justify;
  padding: 20px 35px 0 0px;
}
.career-content-data {
  height: 300px;
  width: 60%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.justify {
  overflow: hidden;
  text-align: center;
  justify-content: center;
  display: flex;
}
.career-content-data h2 { font-size: 25px; color: black; }
.career-content-data p {
  color: black;
  margin: 20px 0;
  padding: 0 70px;
  text-align: justify;
}

.forms {
  width: 100%;
  padding: 30px;
  background: url(../images/download.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}
.form-content { width: 60%; }
.form-row { display: flex; justify-content: center; }

.form-row-data {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 20px;
  width: 300px;
}

label {
  font-size: 14px;
  font-weight: bold;
  color: #053d50;
}

/* base inputs */
input { padding: 6px; }
input:focus, input::selection { outline: none; }

/* file inputs (keep as-is) */
.files {
  font-size: 12px;
  background-color: black;
  color: white;
  padding: 9px;
}

/* submit button — remove black border */
.submit {
  outline: none;
  border: 1px solid #cfcfcf;   /* was 2px solid black */
  font-size: 15px;
  font-weight: bold;
  padding: 6px 15px;
  background: #fff;
  color: #053d50;
  border-radius: 4px;
}
.submit:hover {
  background-color: #053d50;
  color: #fff;
  border-color: #053d50;
}

::placeholder { color: black; opacity: 1; }

/* footer/map bits */
.map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
.direction {
  outline: none;
  background: #053d50;
  color: white;
  padding: 10px;
  margin: 20px;
  text-decoration: none;
}
.direction:hover {
  background-color: white;
  color: black;
  text-decoration: none;
  border: 2px solid #053d50;
}

/* === Uniform look for inputs & selects (size + style) === */
.forms .form-row-data input[type="text"],
.forms .form-row-data input[type="email"],
.forms .form-row-data input[type="tel"],
.forms .form-row-data select {
  width: 100%;
  height: 38px;             /* same as inputs */
  padding: 6px 10px;        /* match input padding */
  border: 1px solid #cfcfcf;
  border-radius: 4px;       /* smooth corners for all */
  font-size: 14px;
  color: #000;
  background: #fff;
  box-sizing: border-box;
}

/* cleaner native arrow + consistent select look */
.forms .form-row-data select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  line-height: 1.2;
}
