.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: #00000011;
  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;
  display:flex;
  align-items:center;
  column-gap:1rem;
  margin-top:30px;
}

.app .plan form {
  margin: 0;
}
.app .select-plan, .app a.select-plan{
  margin-top:30px;
  width: 100%;
  justify-content: center;
  display: flex;
}
.app a.select-plan{
  width: calc(100% - 4rem);
}

.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: #00000011;
    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 #00000033;
  border-radius: 0px;
}
.app .info p{
  color:#EE6400;
  font-size: 1rem;
}