.unauth-header {
  padding: var(--block-space-half) var(--inline-space-double);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);

  .home-link {
    font-size: var(--font-large);
    font-weight: var(--font-weight-semi-bold);
  }

  .signup-link {
    font-size: var(--font-medium);
    font-weight: var(--font-weight-regular);
  }
}

.unauth-footer {
  padding: var(--block-space-half) var(--inline-space-double);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.05);

  .footer-link {
    font-size: var(--font-small)
  }

  .unauth-footer__links {
    display: flex;
    flex-direction: column;
  }
}

.unauth-page-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}