.Container{
  padding: 0 10px;
  height: 46px;
  background: rgba(0, 0, 0, 0.1);
  display:flex;
  flex-direction: row;
  align-items: center;
  border-radius: 4px;
  width: 100%;
}

.TInput{
  background: transparent;
  display:flex;
  font-size: 15px;
  margin-left: 20px;
  color: #fff;
  width:100%;
  height:50px;
};

.ShowPassword {
  width: 20px;
  height: 20px;
};

.showBtn{
    width: stretch;
    height: 100%;
    padding:0;
    margin: 0;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:rgba(255,255,255,0.6);
    font: size 20px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:rgba(255,255,255,0.6);
   font: size 20px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:rgba(255,255,255,0.6);
   font: size 20px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:rgba(255,255,255,0.6);
   font: size 20px;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:rgba(255,255,255,0.6);
   font: size 20px;
}

::placeholder { /* Most modern browsers support this now. */
   color:rgba(255,255,255,0.6);
   font: size 20px;
}
