*{
  padding: 0%;
  margin: 0;
  box-sizing: border-box;
}


body {
  background-color: #dddddd;
  font-family: Arial, sans-serif;
  -webkit-user-select: none;
  touch-action: none;
  user-zoom: none;
  user-select: none;
  font-size: clamp(15px, 4vw, 18px);
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  color: #000;
  height: 100vh;
}
.page {
  display: none;
  opacity: 0;
}
.page.active {
  display: block;
  opacity: 1;
}




footer{
  box-shadow: inset 1px 1px 20px rgb(0,0,0,0.50);
  transition: 0.3s ease;
  background: #fff;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  padding: 20px;
  height: 60px;
  width: 100%;
  bottom: 0;
}
footer.active{
  transform: translateY(100%);
}


footer button{
  background: transparent;
  color: #000;
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  border-radius: 10px;
  font-size: minmax(15px,950em);
  font-weight: bold;
  height: 50px;
  width: 50px;
  gap: 2px;
}
.btn1{
  font-size: 16px;
}



#checkError{
  clip-path: inset(5px 5px 5px round 30px 0);
  box-shadow: inset 1px 1px 30px rgb(0,0,0,0.60);
  transform: translateY(-130%);
  opacity: 0;
  transition: 0.3s ease;
  background: maroon;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 10px;
  height: 100px;
  width: 80%;
  z-index: 15;
}
#checkError.active{
  transform: translate(0);
  opacity: 1;
}
#timer{
  border: 2px solid #fff;
  color: #fff;
  position: absolute;
  display: grid;
  place-content: center;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  height: 30px;
  width: 30px;
  left: 10px;
  top: 10px;
}
#Error{
  font-size: clamp(12px, 4vw, 15px);
  margin-top: 20px;
  font-weight: bold;
  color: ivory;
  animation: scale 1s linear infinite alternate;
}
@keyframes scale{
  100%{
    transform: scale(0.9);
    color: red;
  }
}













#page1{
  background: #dddddd;
  transition: 0.3s ease;
  position: fixed;
  height: 100vh;
  width: 100%;
}
#page1.shift{
  transform: translate(-100%);
  opacity: 0;
}

.header1{
  box-shadow: inset 1px 1px 20px rgb(0,0,0,0.50);
  background: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  height: 60px;
  width: 100%;
  padding: 20px;
}

.user-synbol{
  filter: brightness(1.2);
  border-radius: 50px;
  pointer-events: none;
  object-fit: cover;
  height: 50px;
  width: 50px;
}
.home-text{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: left;
  text-align: left;
  align-items: left;
  font-size: 12px;
  font-weight: bold;
  left: 80px;
}
.fa-bell{
  background: #00cc99;
  color: ivory;
  display: grid;
  place-content: center;
  border-radius: 50px;
  height: 30px;
  width: 30px;
}
.fa-watsapp{
  background: #00cc99;
  color: #fff;
  position: absolute;
  display: grid;
  place-content: center;
  text-decoration: none;
  border-radius: 50px;
  height: 30px;
  width: 30px;
  right: 70px;
}
#btn-bot{
  background: #00cc99;
  color: #fff;
  position: absolute;
  display: grid;
  place-content: center;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  height: 35px;
  width: 35px;
  right: 130px;
}


.home-page1{
  background: #dddddd;
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
  overflow-y: scroll;
  height: 100vh;
  width: 100%;
  padding: 20px;
  gap: 15px;
}
.wallet{
  box-shadow: inset 1px 1px 20px rgb(0,0,0,0.50);
  clip-path: inset(5px 5px 5px round 30px 0);
  background: #00cc99;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: left;
  text-align: left;
  align-items: left;
  font-weight: bold;
  font-size: clamp(15px, 4vw, 15px);
  padding: 15px;
  height: 100px;
  width: 100%;
  gap: 20px;
}
.fa-eye{
  position: absolute;
  left: 160px;
  top: 19px;
}
#hide{
  position: absolute;
  font-size: 30px;
  top: 55px;
  left: 30px;
}
#pundWallet{
  border-top-left-radius: 20px;
  background: transparent;
  position: absolute;
  font-size: clamp(15px, 4vw, 17px);
  font-weight: bold;
  display: grid;
  place-content: center;
  border: 5px solid #ddd;
  color: #000;
  min-height: 50%;
  height: 50%;
  width: auto;
  padding: 10px;
  bottom: 0%;
  right: 0%;
}
#transaction{
border-bottom-left-radius: 20px;
  background: transparent;
  position: absolute;
  font-size: clamp(15px, 4vw, 17px);
  font-weight: bold;
  display: grid;
  place-content: center;
  border: 5px solid #ddd;
  color: #000;
  padding: 10px;
  min-height: 50%;
  height: 50%;
  width: auto;
  right: 0%;
  top: 0%;
}





.group1{
  box-shadow: inset 1px 1px 20px rgb(0,0,0,0.30);
  background: rgb(0,0,0,0.20);
  clip-path: inset(5px 5px 5px round 30px 0);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  grid-row-gap: 10px;
  place-items: center;
  color: #000;
  height: 250px;
  width: 100%;
  padding: 20px;
  gap: 10px;
}
.group1 button{
  box-shadow: inset 1px 1px 20px rgb(0,0,0,0.50);
  clip-path: inset(5px 5px 5px round 20px 0);
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100px;
  width: 100px;
  font-weight: bold;
  padding: 10px;
  gap: 20px;
}
.sends{
  background: #00cc99;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  height: 30px;
  width: 30px;
}























































#page2{
  background: #dddddd;
  position: fixed;
  height: 100vh;
  width: 100%;
}
.header2{
  background: #fff;
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  padding: 20px;
  height: 60px;
  width: 100%;
}
.home-page2{
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: 100vh;
  width: 100%;
  gap: 10px;
}
.wallet2{
  clip-path: inset(5px 5px 5px round 30px 0);
  box-shadow: inset 1px 1px 20px rgb(0,0,0,0.50);
  background: #00cc99;
  height: 200px;
  width: 100%;
}