.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 300px);
  padding: 32px 16px;
}

@media screen and (max-width: 500px) {
  .auth-page {
    padding: 24px 12px;
    min-height: calc(100vh - 200px);
  }

  .auth-page .form-card {
    padding: 28px 20px;
    box-shadow: var(--shadow-md);
  }

  .auth-page .form-card__title {
    font-size: 22px;
  }
}
