.code-input-wrapper {
    position: relative;
    top: 1390px;
    left: 866px;
    width: 300px;
  
    .form-container {
      position: relative;
      padding: 80px 100px;
      width: 100px;
      background: url(../assets/rätsel1/parchment.png) center / cover no-repeat;
      border: 4px solid #5b3e1d;
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
      display: flex;
      justify-content: center;
      align-items: center;
  
      input {
        width: 100px;
        padding: 0px;
        font-family: 'Cinzel', serif;
        font-size: 2rem;
        color: #3b2200;
        background: transparent;
        border: none;
        outline: none;
        text-shadow: 1px 1px #e6d6a8;
        text-align: center;
      }
  
      label {
        position: absolute;
        top: 0px;
        height: 70%;
        width: 100%;
  
        span {
          position: absolute;
          top: 35px;
          left: 51px;
          font-size: 1.6rem;
          width: 100%;
          color: #6b4d23;
          opacity: 0.8;
          font-style: italic;
        }
  
      }
    }

    .form-overlay {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      position: absolute;
      bottom: 30px;
      width: 100%;
  
      button {
  
        border: 0;
        outline: 0;
        cursor: pointer;
        color: rgb(60, 66, 87);
        background-color: rgb(255, 255, 255);
        box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        padding: 4px 8px;
        display: inline-block;
        min-height: 28px;
        transition: background-color .24s, box-shadow .24s;
  
        :hover {
          box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 3px 9px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
        }
  
      }
    }
  }