body .eye-password input[type="password"],
body .eye-password input[type="text"],
body .bx-soa-auth .eye-password input[type="password"],
body .bx-soa-auth .eye-password input[type="text"] {
  padding-right: 55px;
}

.eye-password {
  position: relative;
}

.eye-password:after {
  content: "";
  width: 55px;
  height: 44px;
  position: absolute;
  top: 26.56px;
  right: 1px;
  background-image: url("../images/svg/eye_close.svg");
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  cursor: pointer;
  background-color: #f7f7f7;
  background-color: var(--darkerblack_bg_black);
}

.eye-password:focus-within:after {
  background-color: #fff;
  background-color: var(--card_bg_hover_black);
}

body .bx-soa-auth .eye-password:after {
  top: 2px;
}

.eye-password.password-show:after {
  background-image: url("../images/svg/eye_open.svg");
}