.customPageCenteredContent {
  width: 100% !important;
  min-width: 0px;
  margin: 0;
  max-width: unset;
}

.contactContainer {
  display: flex;
}

.left {
  width: 60%;
  border: none;
  padding: 0px;
}

.right {
  width: calc(40% - 12vw);
  padding: 0px;
  padding-left: 6vw;
  padding-right: 6vw;
  margin-top: 50px;
}

.left img {
  width: 100%;
}
#email.contactFormInput {
  width: -webkit-fill-available;
}

.formTitle {
  font-size: 30px;
  margin-bottom: 30px;
  /* font-weight: 300; */
}

.contactForm {
  position: relative;
  height: auto;
  margin: 0px;
  overflow: hidden;
}

.contactFormInput {
  position: relative;
  width: -webkit-fill-available;
  background-color: transparent;
  border: 1px solid #1A1A1A;
  color: black;
  border-radius: 0;
  text-align: left;
  height: 50px;
  text-indent: 15px;
  font-size: 16px;
  margin-bottom: 20px;
}

#email.contactFormInput {
  width: -webkit-fill-available;
}

textarea.contactFormInput {
  width: -webkit-fill-available;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  height: 150px;
  resize: none;
  text-indent: 0px;
}

.sendContact {
  width: -webkit-fill-available;
  border-radius: 0px;
  background: black;
  color: white;
  text-transform:capitalize;
  font-size: 18px;
  font-weight: var(--base-font-weight);
}

.customButton:hover {
  background: white;
  color: black;
  border-color: black;
}

#email.contactFormInput::placeholder {
  color: #808080;
}

@media screen and (max-width: 768px) {
  .contactContainer {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .left {
    width: 100%;
  }

  .right {
    padding: 0px;
    width: 90%;
    margin: auto;
    margin-top: 30px;
  }
}
