.Input {
  padding: 16px;
  font-size: 14px;
  font-family: Proxima Nova;
  font-weight: 300;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #DCDCDC;
  border-radius: 3px;
  transition: box-shadow .4s;
  box-shadow: 0 0 0 0 transparent;

  &Invalid {
    box-shadow: 0 0 0 2px #D0021B!important;
  }

  &Wrap {
    position: relative;
  }

  &Error {
    position: absolute;
    padding: 10px 16px;
    background: #f44336;
    color: #fff;
    font-size: 11px;
    z-index: 10;
    bottom: -53px;
    left: 50%;
    transform: translate(-50%, 0);

    &:after {
      bottom: 100%;
      left: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: rgba(136, 183, 213, 0);
      border-bottom-color: #f44336;
      border-width: 6px;
      margin-left: -6px;
    }
  }

  &:active, &:focus {
    outline: none;
  }
}




