* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
}

.careers-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 4.1875rem;
}

/* ------- leftside start ------- */
.careers-section .careers-left {
  direction: rtl;
  display: inline-flex;
  flex-direction: column;
}

.careers-section .careers-left h3 {
  font-size: 1.125rem;
  font-family: "Montserrat-bold";
  margin-bottom: 2.625rem;
}

.careers-section .careers-left h4 {
  font-size: 0.875rem;
  font-weight: 900;
}

.careers-section .careers-left p {
  font-size: 0.875rem;
  max-width: 400px;
  margin-bottom: 38px;
}

/* ------- leftside end ------- */
/* ------- leftright start ------- */
.careers-section .careers-right {
  direction: rtl !important;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.careers-section .careers-right h2 {
  font-family: "Montserrat-bold";
  font-size: 1.5rem;
  margin-bottom: 2.3125rem;
}

.careers-section .careers-right form {
  display: flex;
  flex-direction: column;
}

.careers-section .careers-right form label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 1rem;
  margin-bottom: 8px;
}

.careers-section .careers-right form label:nth-child(7) {
  margin-top: 1rem;
}

.careers-section .careers-right form label span {
  color: red;
  margin-bottom: 1rem;
}

.careers-section .careers-right form input {
  background-color: #f5f5f5;
  border-radius: 30px;
  outline: none;
  border: none;
  padding: 0.425rem;
  margin-bottom: 1rem;
}

.careers-section .careers-right form .dropdown button {
  width: 100%;
  background-color: #f5f5f5;
  direction: rtl;
  text-align: right;
  border-radius: 30px;
}

.careers-section .careers-right form .dropdown .dropdown-menu {
  width: 100%;
  text-align: right;
}

.careers-section .careers-right form #formFile {
  direction: ltr;
  content: "hello";
  background-color: #f5f5f5;
  border-radius: 30px;
  border: none;
  outline: none;
  margin: 0;
}

.careers-section .careers-right form textarea {
  background-color: #f5f5f5;
  border-radius: 30px;
  border: none;
  padding: 10px;
}

.careers-section .careers-right form textarea:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.296);
}

.careers-section .careers-right form button:last-child {
  background-color: #3385c6;
  border-radius: 30px;
  font-size: 1rem;
  font-family: "Montserrat-bold";
  color: white;
  width: fit-content;
  border: none;
  padding: 10px 40px;
  margin-right: auto;
  margin-top: 15px;
}

@media only screen and (max-width: 991px) {
  .careers-section {
    justify-content: center;
  }
  .careers-section .careers-left {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .careers-section .careers-right form button:last-child {
    margin-inline: auto;
  }
}

/* ------- leftright end ------- */
