.encoded {
  width: calc(100vw - 60px);
  height: 5em;
  max-width: 700px;
  font-size: 15px;
  font-family: "Roboto Mono", Menlo;
  line-height: 1.5;
  color: #ff0000;
  resize: vertical;
}

@media only screen and (max-width: 600px) {
  .encoded {
    width: calc(100vw - 60px);
    height: 11em;
    max-width: 700px;
    font-size: 15px;
    font-family: "Roboto Mono", Menlo;
    line-height: 1.5;
    color: #ff0000;
  }
}

.decoded {
  width: calc(100vw - 60px);
  height: 210px;
  max-width: 700px;
  font-size: 15px;
  font-family: "Roboto Mono", Menlo;
  line-height: 1.5;
  color: #3f00ff;
  resize: vertical;
}

.secret {
  width: auto;
  font-size: 15px;
  font-family: "Roboto Mono", Menlo;
  line-height: 1.5;
  color: #4ba91c;
}

.error {
  background-color: #d97c82;
}

#encoded-jwt-container,
#decoded-jwt-container {
  text-align: center;
}

#encoded-jwt-container {
  margin-top: 60px;
  position: relative;
}


#me {
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  margin-bottom: 15px;
  width: 100%;
}

/* clipboard icon */


.clipboard.icon {
  position: absolute;
  right: max(30px, calc((100vw - 700px) / 2));
  margin-top: -18px;
  caret-color: transparent;
  /* margin-top: 4px; */
  margin-right: -10px;
  width: 11px;
  height: 13px;
  border: solid 1px #333333;
  border-top: none;
  border-radius: 1px;
  cursor: pointer;
}

.clipboard.icon:before {
  top: -1px;
  left: 2px;
  width: 5px;
  height: 1px;
  border: solid 1px #333333;
  border-radius: 1px;
}

.clipboard.icon:after {
  width: 3px;
  height: 1px;
  background-color: #333333;
  box-shadow: 8px 0 0 0 #333333;
}

.icon:before,
.icon:after {
  content: '';
  position: absolute;
  display: block;
}

.clipboard.icon:active {
  background-color: darkorange;
}