* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html,
body {
  line-height: normal;
  overflow-x: hidden;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}
a:active {
  color: #000;
}
a:visited {
  color: #000;
}

img {
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
  vertical-align: top;
}

input,
button {
  box-sizing: border-box;
  border: none;
  outline: none;
}

textarea {
  box-sizing: border-box;
  border: none;
  outline: none;
}

select {
  border: none;
  outline: none;
}

table {
  display: block;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  background: linear-gradient(#241573, #0f0737);
}

main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
}
main h1 {
  color: #F233CA;
  text-align: center;
}
main p {
  text-align: center;
  margin-top: 20px;
  color: #fff;
}

h2 {
  border-left: 8px solid #F233CA;
  border-bottom: 2px solid #F233CA;
  color: #fff;
  padding: 0.5rem 1rem;
  margin-top: 30px;
}

p.error {
  display: block;
  min-height: 20px;
  margin-bottom: 10px;
  color: #F233CA;
  font-size: 0.85em;
  text-align: left;
}

.btn, .destructive_btn {
  background: #F233CA;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}
.btn.disabled, .disabled.destructive_btn {
  cursor: default;
  color: #808186;
  background-color: #42404d;
}

.destructive_btn {
  background: #00c6e0;
}
.destructive_btn.disabled {
  cursor: default;
  color: #808186;
  background-color: #42404d;
}

.col2 {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col2 > div.input {
  width: 49%;
  margin: 1rem auto;
}
@media screen and (max-width: 740px) {
  .col2 > div.input {
    width: 100%;
  }
}
.col2 > div.input form {
  width: 100%;
}
.col2 > div.input form textarea {
  width: 100%;
  height: 400px;
  font-family: monospace;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0px 0px 10px #F233CA;
}
.col2 > div.result {
  width: 49%;
  margin: 1rem auto;
}
@media screen and (max-width: 740px) {
  .col2 > div.result {
    width: 100%;
  }
}
.col2 > div.result textarea {
  width: 100%;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0px 0px 10px #F233CA;
  height: 400px;
  overflow-y: scroll;
}

footer {
  text-align: center;
  font-size: 0.85rem;
}
footer a address {
  color: #808186;
  font-style: normal;
  margin-bottom: 1rem;
}

#loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
}
#loading.hidden {
  display: none;
}
#loading p {
  font-size: 1.4rem;
  font-weight: bold;
}
#loading p.emoji {
  font-size: 8rem;
  margin-top: 8rem;
  animation: loading 2s infinite linear;
}

@keyframes loading {
  0% {
    transform: rotate(-45deg);
  }
  25% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(45deg);
  }
  75% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-45deg);
  }
}
.policy_tab {
  margin: 60px auto;
  color: #808186;
}
.policy_tab .col2 {
  max-width: 400px;
}
.policy_tab .col2 a {
  width: 48%;
  margin-bottom: -2px;
  padding: 10px 20px;
  color: #808186;
  background-color: #42404d;
  border-radius: 6px 6px 0 0;
  text-align: center;
}
.policy_tab .policy {
  background-color: #42404d;
  padding: 20px;
  border-radius: 6px;
  display: none;
}
.policy_tab .policy.show {
  display: block;
}/*# sourceMappingURL=style.css.map */