body {
  margin: 0;
  line-height: normal;
}
.big-label {
  cursor: pointer;
  position: relative;
}
.text {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  align-items: center;
  justify-content: center;
}
.input {
  border: 0.7px solid #d26e00;
  font-family: "Space Grotesk";
  font-size: 18px;
  background-color: transparent;
  border-radius: 5px;
  box-sizing: border-box;
  width: 280px;
  height: 40px;
  flex-shrink: 0;
  padding: 0 20px;
  color: #d26e00;
}
.input,
.topic-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.input-group,
.topic-field {
  align-self: stretch;
}
.input-group,
.input-group1,
.keywords-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.button,
.generate-button {
  cursor: pointer;
  justify-content: center;
}
.button {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.34px;
  line-height: 19.44px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Space Grotesk";
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  width: 140px;
  height: 40px;
  flex-shrink: 0;
  background-color: #d26e00;
  border-radius: 5px;
}
input:disabled,
input[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed !important;
}
.generate-button {
  border: 0;
  padding: 0;
  background-color: #d26e00;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
}
.generate-button:hover {
  background-color: #f99a0e;
}
.button-group,
.generate-button,
.left-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.button-group {
  align-self: stretch;
  padding: 30px 0;
  justify-content: center;
}
.left-side {
  border-radius: 10px;
  background-color: #212121;
  padding: 0 10px;
  justify-content: flex-start;
  text-align: left;
  font-size: 18px;
  color: #fff;
  font-family: "Space Grotesk";
}
.result {
  margin: 0;
  position: relative;
  font-weight: 500;
}
.results-section,
.right-side {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.results-section {
  padding: 20px 10px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-family: "Space Grotesk";
}
.right-side {
  border-radius: 10px;
  background-color: #212121;
}
.frame,
.main {
  overflow: hidden;
  display: flex;
}
.main {
  flex-direction: column;
  padding: 10px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.frame {
  position: relative;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .generate-button {
    margin-right: auto;
  }
  .button-group {
    width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 428px) {
  .input-group {
    width: 100%;
  }
  .generate-button {
    width: 100% !important;
  }
}
