/**
* @prop --footer-font-family: Font family of the footer
* @prop --footer-font-size: Font size of the footer
* @prop --footer-color: Font color of the footer
* @prop --footer-weight: Font weight of the footer
*/
amplify-sign-up {
  --footer-font-family: var(--amplify-font-family);
  --footer-font-size: var(--amplify-text-sm);
  --footer-color: var(--amplify-grey);
  --font-weight: var(--amplify-font-weight);
}

.sign-up-form-footer {
  font-family: var(--footer-font-family);
  font-size: var(--footer-font-size);
  color: var(--footer-color);
  font-weight: --font-weight;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-around;
}
.sign-up-form-footer amplify-button {
  margin-bottom: 0.625rem;
}
@media (min-width: 672px) {
  .sign-up-form-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }
  .sign-up-form-footer amplify-button {
    margin-bottom: 0;
  }
}
.sign-up-form-footer * + * {
  margin-bottom: 15px;
}