.tbc-input {
  position: relative;
  width: 100%; }
  .tbc-input input {
    width: 100%;
    height: 60px;
    border: 1px solid #F9F9FA;
    border-radius: 4px;
    box-sizing: border-box;
    color: #222222;
    background: #F9F9FA;
    padding: 29px 16px 11px 16px;
    font-size: 14px;
    line-height: 20px; }
    .tbc-input input:hover {
      border: 1px solid #EEEEEF;
      background: #EEEEEF; }
    .tbc-input input:focus {
      border: 1px solid #0F437F;
      outline: none; }
    .tbc-input input:disabled {
      color: #ABABB2;
      outline: none; }
  .tbc-input label {
    cursor: text;
    position: absolute;
    left: 17px;
    top: 21px;
    color: #73737F;
    transition: all .2s linear; }
  .tbc-input .err-msg {
    visibility: hidden;
    margin-top: 8px;
    color: #E03010;
    font-size: 10px;
    line-height: 10px; }
  .tbc-input.success input {
    border: 1px solid #30BC81; }
  .tbc-input.error input {
    border: 1px solid #E03010; }
  .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; }
