


.splash {
  display: grid;
  grid-template-rows: auto max-content;
  min-height: 100vh;
  height: 100dvh;
}


.splash-center {
  display: flex;
  flex-direction: column;
  padding: 0 22px;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0; 
  -webkit-overflow-scrolling: touch;
}

.splash-actions {
  width: 100%;
  box-sizing: border-box;
  padding: 18px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.full-width {
  width: 100%;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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


.mt-small {
  margin-top: 8px;
}

.mt-medium {
  margin-top: 16px;
}

.mt-large {
  margin-top: 24px;
}

.mb-small {
  margin-bottom: 8px;
}

.mb-medium {
  margin-bottom: 16px;
}

.mb-large {
  margin-bottom: 24px;
}


.gap-small {
  gap: 8px;
}

.gap-medium {
  gap: 16px;
}

.gap-large {
  gap: 24px;
}

