.newLabel {
  margin:10px 0;
  position:relative;
  display:inline-block;
  width: 100%;
  font-family: "WhitneyMedium";
}
.spanNewLabel {
  padding: 10px;
  pointer-events: none;
  position:absolute;
  left:0;
  top:0;
  transition: 0.2s;
  transition-timing-function: ease;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  color: #32363f;
}
.newInput {
  width: 100%;
  padding:10px;
  background-color: transparent !important;
  border-bottom: 1px solid #32363f !important;
  border: none;
}
.newInput:focus + .spanNewLabel, .newInput:not(:placeholder-shown) + .spanNewLabel {
  opacity:1;
  transform: scale(0.70) translateY(-100%) translateX(-20px);
}
.newInput:focus-visible {
 outline: none;
}
.newInput:focus + .spanNewLabel, .newInput:not(:-ms-input-placeholder) + .spanNewLabel {
  opacity:1;
  transform: scale(0.70) translateY(-100%) translateX(-20px);
}
