.tbc-input {
  position: relative;
  width: 100%; }
  .tbc-input .icon-wrapper {
    position: absolute;
    top: 1.125rem;
    right: 1rem;
    visibility: hidden; }
  .tbc-input input {
    width: 100%;
    height: 60px;
    border: 1px solid #DADADA;
    border-radius: 4px;
    box-sizing: border-box;
    color: #222222;
    background: #F4F4F4;
    padding: 29px 40px 11px 16px;
    font-size: 14px;
    line-height: 20px; }
    .tbc-input input:hover {
      border: 1px solid #DADADA;
      color: #505058;
      background: #ECECEC; }
    .tbc-input input:focus {
      border: 1px solid #0F437F;
      outline: none; }
    .tbc-input input:disabled {
      color: #C2C2D2;
      outline: none; }
  .tbc-input label {
    cursor: text;
    position: absolute;
    left: 17px;
    top: 17px;
    color: #73737F;
    transition: all .2s linear;
    pointer-events: none; }
  .tbc-input .err-msg {
    display: block;
    height: 18px;
    margin-top: 8px;
    color: #EB4949;
    font-size: 10px;
    line-height: 10px; }
  .tbc-input.success input {
    border: 1px solid #30BC81; }
  .tbc-input.success .icon-wrapper.success {
    visibility: visible; }
  .tbc-input.error input {
    border: 1px solid #EB4949; }
  .tbc-input.error .icon-wrapper.error {
    visibility: visible; }
  .tbc-input.error .err-msg {
    visibility: visible; }
  .tbc-input.filled label {
    font-size: 12px;
    line-height: 14px;
    color: #73737F;
    top: 13px;
    transition: all .1s linear; }
  .tbc-input.disabled input, .tbc-input.disabled label {
    color: #ABABB2;
    pointer-events: none; }
