@charset "utf-8";
.custom-inputs span {
  color: #000000;
  display: block;
  text-align: right;
  padding-right: 10px;
  font-size: 16px;
}
.custom-inputs > div {
  margin-top: 0.4rem;
  /*border-radius: 50px;*/
  width: 100%;
  min-width: 100%;
  border: 1px solid #CAD0D3;
  color: #CAD0D3;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .custom-inputs > div {
    min-width: 250px;
  }
}
.custom-inputs > div > img {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(calc(-50% + 0.5px));
  filter: grayscale(100%);
}

.custom-inputs > div .captcha {
  position: absolute;
  left: 50px;
  top: 40%;
  transform: translateY(calc(-50% + 0.5px));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-inputs > div .captcha-holder {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(calc(-50% + 0.5px));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-inputs > div .captcha-holder img:first-child {
  width: 100px;
  font-size: 0.7rem;
}
.custom-inputs > div .captcha-holder img:last-child {
  width: 18px;
  cursor: pointer;
  margin-right:14px !important;
}
.custom-inputs > div input {
  outline: none;
  width: 100%;
  border: 0;
  /*border-radius: 50px;*/
  padding-right: 10px;
  padding: 0.4rem;
}
.custom-inputs > div > img + input {
  padding-right: 35px;
}
.custom-inputs:focus-within > div {
  border-color: #122D46;
}
.custom-inputs:focus-within > div input {
  color: #000;
}
.custom-inputs:focus-within > div > img {
  filter: none;
}
