.qrDiv {
  width: 80%;
  margin-left: 10%;
  background-color: var(--secondbackgroundcolor);
  border: 1px solid var(--forthbackgroundcolor);
  border-radius: 4px;
  box-shadow: 1px 1px 4px 0px black;
  min-height: 400px;

  padding: 16px;
  display: flex;
  justify-content: center;
}

.qrLeftDiv {
  width: 60%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 50px;
}
.qrRightDiv {
  width: 40%;
  border-left: 1px dashed var(--forthbackgroundcolor);
}

.qrHeadline {
  font-size: 1.1em;
  margin: 0;
  margin-bottom: 15px;
  text-decoration: underline;
}

#inputs {
  display: flex;
  flex-direction: column;
}

.qrLabel {
  margin-top: 10px;
  margin-bottom: 3px;
  margin-left: 16px;
}

.qrInput {
  width: 90%;
  background-color: var(--backgroundcolor);
  border: 1px solid var(--thirdbackgroundcolor);
  border-radius: 4px;
  padding: 4px 8px;
  outline: none;
  transition: all 0.15s;
}
.qrInput:hover {
  border: 1px solid var(--maincolor-blue);
}
.qrInput:focus {
  border: 1px solid var(--contrastcolor);
}

.inputNote {
  width: 90%;
  font-size: 0.9em;
  opacity: 0.8;
  font-style: italic;
  margin-top: 3px;
}

#type {
  margin-bottom: 30px;
}

#submit {
  position: absolute;
  bottom: 0px;
  right: 15px;
}

#resultArea {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.result {
  max-width: 90%;
}

.downloadBtn {
  margin: 15px auto;
}

#note {
  color: tomato;
  text-align: center;
  display: block;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .qrDiv {
    width: 90%;
    margin-left: 5%;
  }
}

@media (max-width: 1000px) {
  .qrDiv {
    flex-direction: column;
  }

  .qrLeftDiv {
    width: 100%;
  }

  .qrRightDiv {
    width: 100%;
    min-height: 100px;
    border-left: unset;
    border-top: 1px dashed var(--forthbackgroundcolor);
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  .qrInput {
    width: 100%;
  }

  #submit {
    position: unset;
    margin: 20px auto 0px auto;
  }
}
