*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #F6F7FB;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.logo {
  width: 100%;
  max-width: 320px;
  height: auto;
}

@media (min-width: 768px) {
  .logo {
    max-width: 420px;
  }
}

@media (min-width: 1200px) {
  .logo {
    max-width: 520px;
  }
}
