:root {

}

.main-background {
  width: 100vw;
  height: 100vh;
}

.main-layout {
  max-width: 430px;
  background: white;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow-y: auto;
}

.main {
  padding: 60px 20px 80px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .header-item h1.header-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.btn {
  padding: 14px;
  border: 1px solid var(--q-primary);
  background: var(--q-primary);
  color: #fff;
  font-size: 16px;
}

