.input {
  height: 38px;
  background: #ffffff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
}

.input.password-error {
  border: 1px solid #ff5b5b;
}

.password-error input::-webkit-input-placeholder {
  color: #FF5B5B;
}

.password-error input:-moz-placeholder {
  color: #FF5B5B;
}

.password-error input::-moz-placeholder {
  color: #FF5B5B;
}

.password-error input:-ms-input-placeholder {
  color: #FF5B5B;
}

.input > input {
  width: calc(100% - 60px);
  height: 36px;
  outline: none;
  color: #999;
  font-size: 12px;
  border: 0;
  margin-left: 15px;
  padding-right: 10px;
}

.input__icon {
  width: 45px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input__icon span {
  width: 15px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.input__icon .icon-user {
  background: url(../../../../static/images/icon-user.png) no-repeat;
}

.input__icon .icon-password {
  background: url(../../../../static/images/icon-password.png) no-repeat;
}

.input__icon span::after {
  content: "|";
  width: 1px;
  height: 12px;
  top: -1px;
  right: -14px;
  color: #333;
  position: absolute;
}
