
.plans {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.plans .plan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 1em;
  border-radius: 20px;
  background-color: #f5f5f509;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 1em;
  width: 200px;
}
.current-plan, .current-plan:hover {
  background: #f5f5f533;
  border: none;
  border-radius: 16px;
  color: #fff;
  cursor: default;
  font-size: 1.2rem;
  line-height: 40px;
  text-wrap: nowrap;
  font-weight: 300;
  padding: 0.5rem 2rem;
  font-family: "Baloo 2", sans-serif;
  display:flex;
  align-items:center;
  column-gap:1rem;
  margin-top:30px;
}

.plan form {
  margin: 0;
}
.select-plan{
  background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
  border: none;
  border-radius: 16px;
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 40px;
  text-wrap: nowrap;
  font-weight: 900;
  padding: 0.5rem 2rem;
  font-family: "Baloo 2", sans-serif;
  display:flex;
  align-items:center;
  column-gap:1rem;
  margin-top:30px;
  margin-bottom: 0px;
}
.select-plan:hover {
  background: #FC466B;
  color: #fff;
}

.upgrade{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5em;
    padding: 2em 2em 1em;
    border-radius: 20px;
    background-color: #f5f5f509;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 1em;
    width: 80%;
    max-width: 400px;
}
.upgrade p{
  margin:0px;
}


.info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.2em;
  padding-bottom: 0.5em;
  width: calc(100% - 2em);
  margin-bottom: 10px;
  border-bottom: 1px solid #ffffff22;
  border-radius: 0px;
}
.info p{
  color:#FC466B;
  font-size: 1rem;
}