:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

a {
  color: rgb(114, 56, 250);
}

a:hover {
  color: rgb(92, 36, 220);
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: rgb(247, 247, 247);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.card {
  width: 360px;
  max-width: 100%;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  box-shadow: inset 0 0 0 1px rgb(235, 235, 235);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  align-items: center;
}

.logo {
  flex-shrink: 0;
}

.text-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  align-self: stretch;
}

.heading {
  align-self: stretch;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  line-height: 18px;
  color: rgb(23, 23, 23);
}

.subtext {
  align-self: stretch;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  line-height: 16px;
  color: rgb(163, 163, 163);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border: none;
  border-radius: 6px;
  background: rgb(114, 56, 250);
  color: rgb(255, 255, 255);
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-primary:hover {
  background: rgb(92, 36, 220);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(114, 56, 250, 0.3);
}

.countdown {
  width: 250px;
  max-width: 100%;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  line-height: 16px;
  color: rgb(92, 92, 92);
}
