html,
body {
  margin: 0;
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}
p {
  word-wrap: wrap;
}
body {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.sidenote {
  font-style: italic;
  font-size: 14px;
}
.body_right {
  transition: all 0.5s;
  width: 60%;
  height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.body_left {
  transition: all 0.5s;
  width: 40%;
  height: 100vh;
  padding: 2rem;
}
.flex-r-fs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.body_left,
.flex-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.logo_container {
  width: 100%;
}
.logo_container > a > img {
  max-width: 260px;
  width: 100%;
  height: auto;
}
.body_left {
  background: #23354d;
  color: #fff;
}
.body_right > h3 {
  margin-bottom: 4rem;
}
#token_generation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#token_generation > input[name="_afm"] {
  width: 260px;
  height: 35px;
  border: 0;
  background: #eeeeee;
  border-radius: 3px;
  padding: 0 0.4rem;
}
#token_generation > input[name="_afm"]:focus {
  outline: 0;
}
#token_generation > input[type="submit"] {
  border: 0;
  background: #23354d;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2rem;
}
#token_generation > input[type="submit"]:hover {
  cursor: pointer;
  background: #eee;
  color: #23354d;
}
#url_token {
  margin-top: 4rem;
}

.privacy_statement {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  max-width: 360px;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0px 5px 30px -5px rgb(34 56 101 / 15%);
  font-size: 0.9rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  display: none;
}
.highlighted_link {
  color: #000;
  font-weight: 700;
}
.deny_terms {
  background: transparent;
  border: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
}
.deny_terms:hover {
  opacity: 0.75;
  cursor: pointer;
}
.deny_terms:focus {
  outline: 0;
}
.accept_terms {
  color: #fff;
  border-radius: 3px;
  border: 0;
  background: #23354d;
  align-self: flex-end;
  padding: 0.5rem 1rem;
}
.accept_terms:hover {
  opacity: 0.75;
  cursor: pointer;
}
.accept_terms:focus {
  outline: 0;
}

@media screen and (max-width: 1080px) {
  .body_left,
  .body_right {
    transition: all 0.5s;
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .body_left,
  .body_right {
    height: 100%;
    transition: all 0.5s;
    width: 100%;
  }
}
