* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Golos Text', -apple-system, sans-serif;
}

body {
  background: #EDEFF2;
}

button {
  font-family: inherit;
}

/* Centers the mobile-first layout on wide viewports, full-bleed on phones */
.zp-page {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

@keyframes zpModalIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes zpFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.zp-btn-primary-hover:hover {
  background: #087A5B !important;
}
