.border {
    border: 10px solid;
    background: #00dfff;
    border-radius: 15px;
    border-color: #0d0d27;
    visibility: hidden;
  }
  .center {
  margin: auto;
  width: 50%;
  padding: 10px;
  }
  .button{
    background: #0d0d27;
    border-radius: 10px;
    padding: 10px;
    font-size: 15px;
    width: 300px;
   font-family: 'Coming Soon', cursive;
    color: #00dfff;
  }
  .input {
        border-radius: 10px;
        width: 172px;
        padding: 10px;
       font-family: 'Coming Soon', cursive;
  }
  body {
   font-family: 'Coming Soon', cursive;
    text-align: center;
  }
  #qrCodeContainer {
    position: relative;
    width: 256px; /* Set the width and height of the QR code */
    height: 256px;
  }

  #qrCode {
    position: absolute;
    top: 0;
    left: 0;
  }

  .hidden {
    display:none;
  }

  #centeredImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px; /* Set the size of the centered image */
    height: 75px;
    visibility: hidden; /* Initially hidden */
  }