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

.app .plans .plan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 1em;
  border-radius: 20px;
  background-color: #ffffff77;
  margin: 1em;
  width: 200px;
}
.app .current-plan, .app .current-plan:hover {
  background: #7498EB;
  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;
}

.app .plan form {
  margin: 0;
}
.app .select-plan{
  background: #D13627;
  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;
}
.app .select-plan:hover {
  background: #FC466B;
  color: #fff;
}

.app .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: #ffffff77;
    margin: 1em;
    width: 80%;
    max-width: 400px;
}
.app .upgrade p{
  margin:0px;
}


.app .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;
}
.app .info p{
  color:#FC466B;
  font-size: 1rem;
}