* {
  font-family: var(--font-family);
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-y: hidden;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: var(--primary-background-color);
  color: var(--text-color);
  height: 100vh;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  color: var(--welcome-screen-title-color);
}

.h1-screen2 {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  color: var(--welcome-screen-title-color);
}

p {
  font-size: 18px;
  line-height: 22px;
  margin-top: 0px !important;
  margin-bottom: 91px !important;
  text-align: center;
  color: var(--welcome-screen-description-color);
  font-weight: 500;
}

.icon-01 {
  width: 50px;
  height: 50px;
  align-items: center;
}

.page-wrapper {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  align-items: center;

}

.content-wrapper {
  background: var(--primary-background-color);
  padding: 2em;
  display: flex;
  margin: auto;
  flex-direction: column;
  border-radius: 30px;
  margin: auto
}


.content-wrapper .welcome-content {
  padding: 1em;
  padding-top: 0px !important;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  align-items: center;
}

.content-wrapper .thanks-content {
  padding: 1em;
  padding-top: 0px !important;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  align-items: center;
}

.bottom-btn {
  display: grid;
  margin-left: 16px;
  margin-right: 16px;
}


button[disabled] {
  background: #C8C8C8
}

button {
  cursor: pointer;
  background: var(--button-background-color);
  color: var(--button-text-color);
  width: calc(100% - 32px);
  position: absolute;
  bottom: calc(0% + 16px);
  border: none;
  border-radius: 4px;
  padding: 12px 9px;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  align-self: center;
  justify-self: center;
}