.button-base {
  position: relative;
  display: inline-block;
  color: inherit;
  border: 1px solid var(--black);
  border-radius: 1.5rem;
  padding: 0.625rem 1.5rem 0.5625rem;
  text-align: center;
}
.button-base:link, .button-base:visited {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .button-base:is(button) {
    cursor: pointer;
  }
}

.button {
  position: relative;
  display: inline-block;
  color: inherit;
  border: 1px solid var(--black);
  border-radius: 1.5rem;
  padding: 0.625rem 1.5rem 0.5625rem;
  text-align: center;
  font-family: ReaderMedium;
  font-size: 0.625rem;
  letter-spacing: 1.2px;
  line-height: 1rem;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
}
.button:link, .button:visited {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .button {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
.button--alt {
  background-color: var(--black);
  color: var(--white);
}
@media only screen and (min-width: 768px) {
  .button {
    padding: 0.875rem 1.5rem 0.6875rem;
  }
}

.button-small {
  position: relative;
  display: inline-block;
  color: inherit;
  border: 1px solid var(--black);
  border-radius: 1.5rem;
  padding: 0.625rem 1.5rem 0.5625rem;
  text-align: center;
  font-family: ReaderMedium;
  font-size: 0.625rem;
  letter-spacing: 1.2px;
  line-height: 1rem;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
}
.button-small:link, .button-small:visited {
  text-decoration: none;
}
.button-small--alt {
  background-color: var(--black);
  color: var(--white);
}

.button-large {
  position: relative;
  display: inline-block;
  color: inherit;
  border: 1px solid var(--black);
  border-radius: 1.5rem;
  padding: 0.625rem 1.5rem 0.5625rem;
  text-align: center;
  font-family: ReaderMedium;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  line-height: 1.125rem;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
}
.button-large:link, .button-large:visited {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .button-large {
    padding: 0.875rem 1.5rem 0.6875rem;
  }
}

.account {
  padding: 5.5rem 1rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .account {
    padding: 5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .account__wrapper {
    grid-column: 2/span 14;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.account__header {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .account__header {
    grid-template-columns: repeat(10, 1fr);
    grid-column: span 10;
  }
}
.account__title {
  font-family: Reader;
  --mb: 1.6875rem;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  line-height: 1.6875rem;
  grid-column: span 4;
}
@media only screen and (min-width: 768px) {
  .account__title {
    --mb: 1.875rem;
    font-size: 1.375rem;
    line-height: 1.875rem;
  }
}
.account__nav {
  font-family: Reader;
  --mb: 1.6875rem;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  line-height: 1.6875rem;
  grid-column: span 4;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .account__nav {
    --mb: 1.875rem;
    font-size: 1.375rem;
    line-height: 1.875rem;
  }
}
@media only screen and (min-width: 768px) {
  .account__nav {
    justify-content: flex-start;
  }
}
.account__nav a:not(:last-child), .account__nav span:not(:last-child) {
  margin-right: 1rem;
}
.account__nav a {
  color: var(--grey);
}
@media only screen and (min-width: 768px) {
  .account .sign-in {
    grid-row: 2;
    grid-column: 5/span 6;
  }
}
.account .sign-in .button {
  width: 100%;
}
.account__forgot {
  font-family: Reader;
  --mb: 1.3125rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  line-height: 1.3125rem;
  margin-left: 1rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .account__forgot {
    margin-bottom: 3rem;
  }
}
.account__forgot :link,
.account__forgot :visited {
  text-decoration-color: var(--placeholder);
  text-underline-offset: 0.25rem;
}
.account .errors {
  font-family: Reader;
  --mb: 1.3125rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  line-height: 1.3125rem;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  color: var(--red);
  padding: 0 0.25rem;
}
