:root {
  --color1: #eae9e2;
  --color2: #523140;
  --color3: #e3e1d7;
  --color4: #1d1d1d;
  --color5: #eae9e2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px; /* baseline */
  user-select: none;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--color3);
  color: var(--color1);
}

main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  text-align: center;
  font-size: 25px;
}

.arc {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  object-position: center 28%;
}

.logo {
  position: absolute;
  z-index: 2;
  top: 4%;
  left: 2%;
  width: 16%;
}

.jopie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  object-fit: cover;
  object-position: center 42%;
}

.content--home {
  position: absolute;
  bottom: 10%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1500px;
  width: 100%;
}
.content--home .title {
  font-size: 120px;
  line-height: 1.1;
  text-shadow: 2px 2px 2px #000;
}
.content--home .button {
  display: inline-block;
  margin-top: 0.75em;
  background: var(--color3);
  color: var(--color2);
  font-size: 30px;
  padding: 0.2em 0.5em;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.timer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.timer > div {
  background: var(--color4);
  width: 100%;
  height: 10px;
}

.content--register {
  position: absolute;
  bottom: 3%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1500px;
  width: 100%;
  color: var(--color2);
  line-height: 1.1;
}
.content--register .title {
  margin-inline: auto;
  max-width: 36%;
  font-size: 50px;
  font-weight: 600;
}
.content--register .subtitle {
  margin-top: 1em;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 3em;
}
.content--register form {
  display: flex;
  text-align: left;
  gap: 100px;
}
.content--register form > * {
  flex: 1 1 0;
}
.content--register .table {
  margin-top: 2em;
  display: table;
  width: 100%;
}
.content--register .table > * {
  display: table-row;
}
.content--register .table > * > * {
  display: table-cell;
  padding-block: 16px;
}
.content--register .form--title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 0.25em;
}
.content--register input {
  display: block;
  border: 1px solid var(--color2);
  font-size: inherit;
  padding: 8px;
  width: 100%;
  height: 50px;
}
.content--register .right {
  margin-top: 30px;
  margin-right: 10%;
}
.content--register .right label {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.content--register .right label input {
  appearance: none;
  flex: 0 0 50px;
  width: 50px;
  position: relative;
  border: 1px solid var(--color2);
  margin-right: 0.5em;
}
.content--register .right label input::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color2);
  opacity: 0;
  transition: opacity 0.25s;
}
.content--register .right label input:checked::after {
  opacity: 1;
}
.content--register input, .content--register input + span::before {
  background-color: var(--color5);
}
.content--register .input-error:required {
  border: 2px solid red;
  background-color: #ffe6e6;
}
.content--register input:focus-visible, .content--register .right input[type=checkbox]:focus + span::before {
  outline: none;
  border: 2px solid #007bff; /* fake border */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); /* optional focus ring */
}
.content--register button[type=submit] {
  background-color: var(--color2);
  color: var(--color1);
  padding: 0.25em 0.5em;
  display: inline-block;
  margin-top: 0.7em;
  font-size: 45px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
.content--register .button {
  display: inline-block;
  margin-top: 0.75em;
  background-color: var(--color2);
  color: var(--color1);
  font-size: 35px;
  padding: 0.25em 0.5em;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
.content--register .foot {
  margin-top: 4em;
  font-size: 25px;
}

body {
  --height: 230px;
}

body.keyboard-visible main, body.keyboard-visible .logo, body.keyboard-visible .arc {
  transform: translateY(calc(-1 * var(--height)));
}
body.keyboard-visible .simple-keyboard {
  transform: none;
}

main, .logo, .arc, .simple-keyboard {
  transition: 0.5s;
}

.simple-keyboard.hg-theme-default {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: 25%;
  width: auto;
  z-index: 9;
  transform: translateY(var(--height));
  color: #333;
}

#clock {
  position: fixed;
  z-index: 1;
  top: 10px;
  right: 10px;
  color: #fff;
  padding: 6px 12px;
  font-family: sans-serif;
  font-size: 14px;
  border-radius: 4px;
}

/*# sourceMappingURL=index.css.map */
