@import url("/css/normalize.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
html, body {
  height: 100%;
}

body {
  display: flex;
}

@-webkit-keyframes spinner {
  to {
    transform: rotate(1turn);
  }
}

@keyframes spinner {
  to {
    transform: rotate(1turn);
  }
}
.main-bg {
  display: flex;
  flex: 1;
  flex-direction: column;
  background-color: #000000;
  color: #E8E8E8;
}

.book-brand-section {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: center;
  margin: 30px 0;
}
.book-brand-section img {
  width: 640px;
}

.form-section {
  font: normal normal bold 25px/38px Poppins;
  display: flex;
  flex-direction: column;
  flex: 3;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0;
}
.form-section.at-process .spinner {
  display: block;
}
.form-section.at-error form.hexocode input {
  border-color: #FF5757;
}
.form-section.at-error p.error-text {
  display: inline;
}
.form-section.at-success form.hexocode input {
  border-color: #4DFF9C;
}
.form-section.at-success p.success-text {
  display: inline;
}
.form-section.at-disable form.hexocode input {
  color: #C7C7C7;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form-section p.hint-text {
  font-weight: bold;
  margin: 30px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  text-align: center;
}
.form-section p.error-text {
  font: normal normal normal 20px/30px Poppins;
  margin: 30px 0;
  text-align: center;
  color: #FF5757;
  display: none;
}
.form-section p.success-text {
  font: normal normal normal 20px/30px Poppins;
  margin: 30px 0;
  text-align: center;
  color: #4DFF9C;
  display: none;
}
.form-section .spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #c7c7c7;
  border-right-color: #0f76ff;
  -webkit-animation: spinner 1s infinite linear;
          animation: spinner 1s infinite linear;
  margin: 30px 0;
  display: none;
}
.form-section form.hexocode {
  display: flex;
  align-items: center;
}
.form-section form.hexocode input {
  text-align: center;
  font-size: 3rem;
  transition-property: border-color, border-width, background-color, color;
  transition-duration: 300ms;
  transition-timing-function: ease-out;
  outline: 0;
  padding: 0;
  margin: 0 8px;
  box-sizing: border-box;
  width: 85px;
  height: 85px;
  background-color: #000000;
  border: 3px solid #C7C7C7;
  color: #FFFFFF;
  border-radius: 20px;
  opacity: 1;
}
.form-section form.hexocode input:focus-visible {
  color: #000000;
  background-color: #FFFFFF;
  border: 5px solid #0F76FF;
}
.form-section form.hexocode span.dash {
  margin: 0 8px;
}

.result-section {
  font: normal normal bold 25px/38px Poppins;
  display: flex;
  flex-direction: column;
  flex: 3;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.result-section img {
  width: 182px;
}
.result-section p.success-text {
  font: normal normal normal 20px/38px Poppins;
  margin: 30px 0;
  text-align: center;
}
.result-section p.success-text span {
  display: block;
  margin: 10px;
  font: italic normal bold 40px/38px Poppins;
}

.error-section {
  font: normal normal bold 25px/38px Poppins;
  display: flex;
  flex-direction: column;
  flex: 3;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.error-section img {
  width: 182px;
}
.error-section p.error-text {
  font: normal normal normal 20px/38px Poppins;
  margin: 30px 0;
  text-align: center;
  color: #FF5757;
}
.error-section p.error-text span {
  display: block;
  margin: 10px;
  font: italic normal bold 40px/38px Poppins;
}

.pa-brand-section {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: center;
  margin: 30px 0;
}
.pa-brand-section img {
  width: 300px;
}/*# sourceMappingURL=main.css.map */