.contactSection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.contactSection h1 {
  width: 100%;
  text-align: center;
}

.contactSection form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
  width: 90%;
}

.contactSection form label {
  width: 100%;
  margin-left: 3px;
  font-weight: 600;
  font-size: clamp(16px, 1.7vw, 25px);
}

.contactSection form .inputContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  width: 100%;
  border-radius: 5px;
  border: none;
  outline: none;
}

.input::placeholder {
  visibility: hidden;
}

.input::-moz-placeholder {
  visibility: hidden;
  opacity: 0;
}

.textArea::placeholder {
  visibility: hidden;
}

.textArea::-moz-placeholder {
  visibility: hidden;
  opacity: 0;
}


.errorMessage {
  display: none;
}

.inputContainerInvalid .errorMessage {
  display: block;
  margin-top: 0.2rem;
  padding-left: 0.2rem;

  font-size: 14px;
}

.contactSection form .inputContainer .inputLabel {
  position: absolute;
  top: 0.7rem;
  left: 0.05rem;
  width: 100%;
  margin-left: 3px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.input:not(:placeholder-shown)+.inputLabel,
.input:focus+.inputLabel {
  font-size: 0.65rem !important;
  top: 0.1rem !important;
  transition: all 0.3s;
}

.textArea:not(:placeholder-shown)+.inputLabel,
.textArea:focus+.inputLabel {
  font-size: 0.7rem !important;
  top: 0.2rem !important;
  transition: all 0.3s;
}

.input {
  box-sizing: border-box;
  width: 100%;
  height: 35px;
  padding: 15px 5px 5px 5px;
  font-size: 16px;
  border: none;
  outline: none;
}

.textArea {
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  padding: 20px 5px 5px 5px;
  font-size: 16px;
  resize: none;
  border: none;
  outline: none;
}

/* .contactSection .btn-sendmessage {
  width: 100%;
  height: 35px;
  margin-top: 10px;
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 20px);
} */

.Dark .inputContainerInvalid .inputV {
  border-bottom: 2px solid #F51400;
  color: #F51400;
}

.Dark .inputContainerInvalid .inputLabel {
  color: #F51400;
}

.Dark .inputContainerInvalid .errorMessage {
  color: #F51400;
}

.Dark .inputLabel {
  color: #00E0D9;
}

.Dark .input {
  background-color: #15273B;
  border-bottom: 1px solid #00E0D9;
  color: #00E0D9;
}

.Dark .textArea {
  background-color: #15273B;
  border-bottom: 1px solid #00E0D9;
  color: #00E0D9;
}

.Dark .contactSection .btn-sendmessage {
  background-color: #DADCE7;
  color: #15273B;
}


.Light .inputContainerInvalid .inputV {
  border-bottom: 2px solid #FF1F0A;
  color: #FF1F0A;
}

.Light .inputContainerInvalid .inputLabel {
  color: #FF1F0A;
}

.Light .inputContainerInvalid .errorMessage {
  color: #FF1F0A;
}

.Light .inputLabel {
  color: #15273B;
}

.Light .input {
  background-color: #DADCE7;
  border-bottom: 1px solid #15273B;
  color: #15273B;
}

.Light .textArea {
  background-color: #DADCE7;
  border-bottom: 1px solid #15273B;
  color: #15273B;
}

.Light .contactSection .btn-sendmessage {
  background-color: #15273B;
  color: #DADCE7;
}

@media only screen and (min-width: 768px) {

  .contactSection form {
    width: 75%;
  }

}

@media only screen and (min-width: 1024px) {

  .contactSection form {
    width: 70%;
  }

  .contactSection form input {
    height: 35px;
  }

}

@media only screen and (min-width: 1440px) {

  .contactSection form {
    width: 65%;
  }

  .contactSection form input {
    height: 45px;
  }

}