@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

p {
  color: #7280a7;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  background: url(../images/pattern-background-desktop.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-color: #e0e8ff;
}

.card {
  max-width: 34rem;
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.card-top img {
  width: 100%;
}

.card-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3rem 2rem;
}

.card-main .card-body {
  text-align: center;
}

.card-main .card-body .card-title {
  color: #1f2f56;
}

.card-main .card-body .card-desc {
  margin: 1rem 0;
}

.card-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f7ff;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
}

.card-plan .plan-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.card-plan .plan-container .plan {
  margin-left: 1rem;
}

.card-plan .plan-container .plan-name {
  color: #1f2f56;
}

.card-plan .change-plan {
  color: #3829e0;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}

.card-plan .change-plan:hover {
  text-decoration: none;
  color: rgba(56, 41, 224, 0.8);
}

.card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-footer > :first-child {
  margin: 1rem 0;
}

.card-footer .btn {
  padding: 1rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.card-footer .btn.cta {
  background-color: #3829e0;
  color: #fff;
  -webkit-box-shadow: #3829e0 0px 1.5rem 3rem -1rem;
          box-shadow: #3829e0 0px 1.5rem 3rem -1rem;
}

.card-footer .btn.cta:hover {
  -webkit-box-shadow: rgba(56, 41, 224, 0.8) 0px 1.5rem 3rem -1rem;
          box-shadow: rgba(56, 41, 224, 0.8) 0px 1.5rem 3rem -1rem;
  background-color: rgba(56, 41, 224, 0.8);
}

.card-footer .btn.cancel {
  background-color: transparent;
  color: #7280a7;
}

.card-footer .btn.cancel:hover {
  color: #1f2f56;
}

.attribution {
  margin-top: 2rem;
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: #3e52a3;
}

@media screen and (max-width: 767px) {
  body {
    background: url(../images/pattern-background-mobile.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-color: #e0e8ff;
  }
  .card {
    width: 30rem;
  }
}
/*# sourceMappingURL=style.css.map */