@font-face {
  font-family: "Inter Light";
  src: url("https://assets-cdn.userzoom.com/peach/fonts/inter/Inter-Light.woff2") format("woff2"),
    url("https://assets-cdn.userzoom.com/peach/fonts/inter/Inter-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inter Regular";
  src: url("https://assets-cdn.userzoom.com/peach/fonts/inter/Inter-Regular.woff2") format("woff2"),
    url("https://assets-cdn.userzoom.com/peach/fonts/inter/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inter SemiBold";
  src: url("https://assets-cdn.userzoom.com/peach/fonts/inter/Inter-SemiBold.woff2") format("woff2"),
    url("https://assets-cdn.userzoom.com/peach/fonts/inter/Inter-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inter Bold";
  src: url("https://assets-cdn.userzoom.com/peach/fonts/inter/Inter-Bold.woff2") format("woff2"),
    url("https://assets-cdn.userzoom.com/peach/fonts/inter/Inter-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f5fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: flex;
  flex: 1;
  align-items: start;
}

.no-script {
  display: flex;
  flex-direction: column;
  padding: 64px 24px 24px;
  min-height: 100vh;
}

.no-script__card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.17);
  font-size: 14px;
  font-family: "Inter Regular";
  height: fit-content;
  line-height: 24px;
  margin: 40px auto;
  max-width: 616px;
  padding: 32px;
  text-align: center;
  width: 100%;
}

.no-script__card h1 {
  color: #0b1128;
  font-family: "Inter Bold";
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin: 24px 0;
}

.no-script__card p {
  font-size: 14px;
  font-family: "Inter Regular";
  color: #3c405f;
  margin: 0 0 24px;
}

.no-script .no-script__card .no-script__button {
  background-color: #4363f9;
  color: white;
  cursor: pointer;
  font-family: "Inter SemiBold";
  display: inline-block;
  border-radius: 50px;
  font-size: 14px;
  line-height: 24px;
  padding: 12px 48px;
  text-decoration: none;
}
.no-script .no-script__card .no-script__button:hover {
  background-color: #304ad6;
}

.no-script footer {
  padding-top: 24px;
  text-align: center;
}
.no-script footer small {
  color: #4f516e;
  font-family: "Inter Regular";
  font-size: 12px;
  line-height: 20px;
}
.no-script footer small a {
  color: #4363f9;
  text-decoration: none;
}
.no-script footer small a:hover {
  color: #304ad6;
  text-decoration: underline;
}

@media (max-width: 768px) {
  body {
    background-color: white;
  }
  .no-script {
    padding: 24px;
  }
  .no-script .no-script__card {
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    width: 100%;
  }
}
