body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #10121c;
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
}

* {
  box-sizing: border-box;
}

#gen-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 25px;
  flex-grow: 1;
  flex-basis: 200px;
  overflow: auto;
  height: 100%;
}
#gen-form #help {
  color: #9195a1;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
}
#gen-form #help h2 {
  font-weight: 500;
}
#gen-form h1 {
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
#gen-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#viewer {
  flex-grow: 1;
  flex-basis: 600px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: #20222f;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 20px;
}
#viewer .view {
  width: 100%;
  background: #fff;
}
#viewer .view.mobile {
  width: 300px;
}
#viewer .view.tablet {
  width: 500px;
}

input[type=text] {
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-radius: 5px;
  font-size: 18px;
}
input:focus {
  outline: none;
}

textarea {
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-radius: 5px;
  font-size: 18px;
}
textarea:focus {
  outline: none;
}

select {
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-radius: 5px;
  font-size: 18px;
}
select:focus {
  outline: none;
}

.wrap-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.wrap-btns button {
  flex-grow: 1;
  flex-basis: 80px;
  height: 100px;
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  background: #3815de;
  color: #fff;
  cursor: pointer;
}
.wrap-btns button:focus {
  outline: none;
}
.wrap-btns button:hover {
  background: #4e2bf3;
}

.responsive-tools button {
  width: 100px;
  height: 50px;
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  background: #3815de;
  color: #fff;
  cursor: pointer;
}
.responsive-tools button:focus {
  outline: none;
}
.responsive-tools button:hover {
  background: #4e2bf3;
}

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