.bargain-bind-phone {
  display: flex;
  flex-flow: column;
  width: 300px;
  height: 195px;
  padding: 20px;
  background: $white;
  border-radius: 3px;
  margin: 200px auto 20px auto;

  .title {
    text-align: center;
    font-size: $font_16;
    margin-bottom: 12px;
  }

  button, .button {
    display: inline-block;
    width: 260px;
    height: 30px;
    background: $bg_999;
    line-height: 28px;
    text-align: center;
    -webkit-appearance: none;
    border: none;

    font-size: $font_16;
    color: $white;

    &.active {
      background-color: #FADD29;
      color: #FF4000;
    }
  }


  input {
    width: 100%;
    height: 30px;
    -webkit-appearance: none;
    outline: 0;
    border: 1px solid #DDDDDD;
    margin-bottom: 15px;
    padding-left: 10px;

    &::-webkit-input-placeholder {
      color: $color_999;
    }

    &:focus {
      border: 1px solid $active;
      color: $active;
    }
  }

  label {
    display: block;
    position: relative;
  }

  .send-code {
    position: absolute;
    right: 15px;
    top: 8px;
    font-size: 13px;
    color: $color_999;
  }
}