* {
  margin: 0;
  padding: 0;
}

.container {
  width: 500px;
  height: 100vh;
  font-size: 20px;
}
@media (max-width: 500px) {
  .container {
    width: 100%;
  }
}

.title {
  text-align: center;
  color: #ff8aac;
}


.gfrom {
  color: #ff8aac;
  background: #ffffffac;
  padding: 20px;
}
@media screen and (max-width: 300px) {
  .gfrom {
    width: 100%;
  }
}

.ginput {
  display: flex;
  align-items: center;
  margin: 5px 0;
  position: relative;
}
.ginput > .text {
  width: 30px;
  flex: 1;
}
.ginput > input,
.ginput > textarea {
  width: calc(100% - 70px);
  height: 30px;
  padding: 5px 10px;
  border: 2px solid #ff8aac;
  border-radius: 10px;
  outline: none;
}
.ginput > textarea {
  height: 60px;
}

.ginput > input:hover,
.ginput > textarea:hover {
  border: 3px solid #ff7080;
}

.btn {
  color: #fff;
  background: #ff8aac;
  border: 2px solid #ff8aac;
  border-radius: 10px;
  padding: 5px 15px;
  font-weight: bold;
}
.ginput.btn-wapper {
  justify-content: center;
}
.btn:active {
  background-color: #ff7080;
}
.btn:disabled {
  opacity: .6;
}

.info {
  position: absolute;
  right: 5px;
  font-size: 13px;
  color: #0000ff;
}
.info:hover {
  text-decoration: underline;
}

.popup-content .btn {
  width: 220px;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 0;
  border-radius: 25px;
  text-align: center;
  margin: 0 auto;
}

.popup-content .btn.confirm {
  color: #fff;
  background-color: #ff8aac;
}

.output {
  min-height: 30px;
  outline: none;
  white-space: pre-wrap;
  font-size: 13.3333px;
  font-family: monospace;
  overflow: auto;
  word-break: break-all;
  border: 2px solid #ff8aac;
  border-radius: 10px;
  padding: 0 3px;
}
input:disabled,
textarea:disabled {
  opacity: .6;
}
