body {
  user-select: none;
  display: grid;
  place-items: center;
  height: 80vh;
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;
  position: relative;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* body{
	background-color:bisque;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight: 600;
} */
.title {
  text-align: center;
}
.showBody {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding-left: 20%;
  padding-right: 20%;
}

.qr {
  border-radius: 15px;
  border: solid;
  border-color: chocolate;
  margin-right: 20px;
}
.right {
  margin-left: 20px;
}

.buttons {
  height: 4rem;
  width: 10rem;
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.btn {
  cursor: pointer;
  height: 40px;
  font-size: larger;
  padding: 5px;
  width: 100px;
  margin: 5px;
  border-radius: 10px;
  color: rgb(245, 233, 179);
  border: solid;
  border-color: transparent;
}
.btn:hover {
  background-color: rgba(101, 138, 77, 0.185);
  color: black;
  border: solid;
  border-color: black;
}

.btnApprove {
  color: #f14f1e;
  font-size: larger;
  border-radius: 12px;
  border: none;
  margin: 20px;
}

.btnApprove:hover {
  color: #422015;
  font-size: larger;
  border-radius: 12px;
  border: none;
  margin: 20px;
}

.verifybox {
  margin-top: 10px;
  border-width: 2px;
  background-color: coral;
  padding: 2px;
  border-radius: 12px;
  border-style: solid;
  align-items: center;
  justify-content: center;
  border-color: rgb(65, 10, 10);
  text-align: center;
}

.btnGreen {
  display: none;
}
.btnGrey {
  background-color: rgba(255, 1, 1, 0.404);
  width: auto;
  height: auto;
  margin-top: 2px;
}

.hidden {
  /* display: none; */
  border-radius: 12px;
  background-color: white;
  border-style: solid;
}

.btnYellow {
  background-color: rgb(171, 173, 0);
  color: black;
  width: auto;
  height: auto;
  margin-top: 5px;
}

@media (max-width: 986px) {
  .showBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding-left: 20%;
    padding-right: 20%;
  }
  .right {
    font-weight: 600;
  }
  .btnGreen {
    color: green;
    height: auto;
    width: auto;
    display: block;
  }
}
