.register__grid {
  background-color: var(--background-light);
  display: flex;
  flex-direction: column;
  padding: 0 1em 2em;
}
@media (min-width: 45em) {
  .register__grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 67.5em) {
  .register__grid {
    padding: 0 5em 2em;
  }
}
@media (min-width: 45em) {
  .register__grid > * {
    flex-basis: 50%;
  }
}
.register__grid > * + * {
  margin-top: 2em;
}

.register__login {
  background-color: #d39f51;
  color: white;
  font-size: 1.2rem;
  padding: .5em;
}
.register__login a {
  color: var(--heading);
  font-size: inherit;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.register__login a:hover {
  color: var(--foreground);
}
.register__login a:focus-visible {
  background-color: var(--badge-02);
}

.register__grid h3 {
  color: #402640;
  margin: .5em 0;
  text-transform: uppercase;
}

@media (min-width: 45em) {
  .register__price {
    padding: 0 2em;
    text-align: left;
  }
}
.register__price h3::after {
  content: "*";
  margin-left: .3em;
}
.register__price > .markup {
  color: #402640;
  font-family: 'Franklin Sub', sans-serif;
  font-size: 2.5rem;
  margin: 0;
}
.register__price > .markup::after {
  content: "**";
  font-family: 'Franklin Paragraph', sans-serif;
  font-size: 1.6rem;
  position: relative;
  top: -.5em;
}
.register__price img {
  width: auto;
  height: .7em;
}
.register__price .star::before,
.register__price .star::after {
  content: "\2605";
  margin-right: .3em;
}
.register__price .star::after {
  margin-right: 0;
  margin-left: .3em;
}
.register__price small:nth-of-type(1) span::before {
  content: "*";
  margin-right: .7ch;
}
.register__price small:nth-of-type(2) span::before {
  content: "**";
  margin-right: .7ch;
}
.register__price .payment-methods {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
}
.register__price .payment-methods p {
  flex-basis: 100%;
  margin: 0;
}
.register__price .payment-methods svg {
  width: auto;
  height: 1.5em;
}
.register__price .payment-methods .a {
  fill: #016FD0;
  fill-opacity: 1;
  stroke: none;
}
.register__price .payment-methods .b {
  fill: #FFFFFF;
  stroke: none;
}
.register__price .payment-methods .c {
  fill: #10298E;
  fill-opacity: 1;
  fill-rule: nonzero;
  stroke: none;
}
.register__price .payment-methods .d {
  fill: #FFBE00;
  fill-opacity: 1;
  fill-rule: nonzero;
  stroke: none;
}
@media (min-width: 45em) {
  .register__price .payment-methods {
    justify-content: initial;
  }
}

.register__grid p {
  line-height: initial;
  margin: 2em 0;
}
.register__grid small {
  display: block;
  margin: .8em 0;
}
.register__grid * > small:last-child {
  margin-bottom: 0;
}

.register__grid .validation-message {
  margin: initial;
}
.register__grid form [type="submit"] {
  border-radius: .16em;
  margin-left: auto;
  padding: .5em 2em;
}
