.masked-input {
  width: 100%;
  position: relative;
  margin-top: 15px;
}

.masked-input-container {
  position: relative;
  width: 100%;
}

.masked-input-label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  font-size: 14px;
  color: #9d9d9d;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.masked-input-box:focus {
  outline: none;
  box-shadow: none;
}

.masked-input-box:focus ~ .masked-input-label,
.masked-input-label.fixed {
  top: -10px;
  left: 3px;
  color: #9d9d9d;
  z-index: 1;
}

.masked-input-img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
}

.masked-input-img > img {
  max-width: 100%;
  height: auto;
}
