.button-partner {
  display: flex;
  align-items: center;
  font-family: inherit;
  /* font-weight: 500; */
  /* padding: 0.7em 1.4em 0.7em 1.1em; */
  padding: 0em 1em 0em 1em;
  color: white !important;
  background: linear-gradient(45deg, rgb(82 124 238) 0%, rgb(44 215 252) 100%);
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em rgb(44 215 252);
  letter-spacing: 0.05em;
  border-radius: 20em;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-partner:hover {
  box-shadow: 0 0.5em 1.5em -0.5em rgb(82 124 238);
  color:rgb(0, 0, 0) !important;
}

.button-partner:active {
  box-shadow: 0 0.3em 1em -0.5em rgb(82 124 238);
  color:rgb(0, 0, 0) !important;
}

.sign-up:after {
  background-image: url(../images/pro-table-top-bottom.png);
  width:281px !important;
  height:251px;
  z-index: -1;
}

.sign-up:before {
  z-index: -1;
}

#sign-up, #plan-form {
  text-align: left;
  width:80%;
  margin-left:10%;
  margin-right: 10%;
}

.error {
  color: red;
}

/* for select plan */
.radio-input input {
  display: none;
  }

  .radio-input label {
  --border-color: gray;

  border: 2px solid var(--border-color);
  border-radius: 6px;
  min-width: 5rem;
  margin: 1rem;
  padding: 1rem;
  /* display: flex; */
  justify-content: space-between;
  position: relative;
  /* align-items: center; */
  width:100%;
  }

  .radio-input input:checked + label {
  --border-color: #5180ee;
  border-color: var(--border-color);
  border-width: 3px;
  }
  .radio-input label:hover {
  --border-color: #5180ee;
  border-color: var(--border-color);
  }

  .radio-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  }

  .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(189, 187, 207);
  margin-right: 0.5rem;
  position: relative;
  }

  .radio-input input:checked + label span.circle::before {
  content: "";
  display: inline;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2f64d8;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  }
  .text {
  display: flex;
  align-items: center;
  }

  .price {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-weight: bold;
  }

  .small {
  font-size: 10px;
  /* color: black; */
  font-weight: 300;
  }

  .info {
  position: absolute;
  display: inline-block;
  font-size: 11px;
  background-color: rgb(31, 236, 123);
  border-radius: 20px;
  padding: 1px 9px;
  top: 0;
  transform: translateY(-50%);
  right: 5px;
  }

  .plan-upper {
      display:flex;
      /* flex:1; */
      flex-direction:row;
      justify-content: space-between;
  }

  .plan-lower {
      display:flex;
      flex:1;
      flex-direction: column;
      margin: 5px 30px;
  }

  .plan-desc-list {
      list-style:disc;
      font-size:13px !important;
  }