input,textarea{
	margin:10px;
	padding:30px;
	border:1px solid white;
	width:40vh;
	background:rgba(0,0,0,0);
	border-radius:10px;
	height:30px;
	text-align:center;
	color:white;
}
#evf{display:none}
.evform{
    position:fixed;
    padding:5vh;
    top:50%;
    left:50%;
    width:100%;
    height:fit-content;
    z-index:4;
    backdrop-filter:blur(50px);
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    box-shadow:3px 3px 25px 5px black;
}
textarea{
	height:100px;
}
input::placeholder, textarea::placeholder{
	color:white;
}
input:invalid{
	background:rgba(255,0,0,0.5);
}
input:valid{
	background:rgba(0,255,0,0.5);
}
input[type="submit"],input[type="button"]{
    width:40vh;
	border-radius:20px;
	padding-top:10px;
	background-color:white;
	color:black;
	font-size:15px;
	transition: all ease 0.4s;
}
input[type="button"]{background-color:black;color:white}
input[type="submit"]:hover{
	background:rgba(0,0,0,0);
	color:white;
	box-shadow:0px 0px 10px 10px white;
}
.hr{
	width:60%;
	height:2px;
	background:linear-gradient(90deg, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
}
.slide{
	animation:slide 3s linear;
}
.appear{
	animation:appear 3s linear;
	color:white;
}

@keyframes slide{
	0%{transform:translate(50%,0%);opacity:0%}
	30%{transform:translate(-20%,0%);opacity:100%}
	70%{transform:translate(-30%,0%);opacity:100%}
	100%{transform:translate(-35%,0%);opacity:0%}
}
@keyframes appear{
	0%{opacity:0%}
	50%{opacity:100%}
	100%{opacity:0%}
}
@keyframes fade{
	0%{opacity:0%}
	50%{opacity:100%}
	90%{opacity:100%}
	100%{opacity:0%}
}
.image{transition:transform 0.2s}
.fade{animation:fade 3s linear}
.image:hover{transform:scale(0.9)}
.card {
  width: 20%;
  height: fit-content;
  padding: 20px;
  color: white;
  background: linear-gradient(#212121, #212121) padding-box,
              linear-gradient(145deg, transparent 35%,#e81cff, #40c9ff) border-box;
  border: 2px solid transparent;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow:10px 10px 25px 5px black;
}

.card .main-content {
  flex: 1;
}

.card .header span:first-child {
  font-weight: 600;
  color: #717171;
  margin-right: 4px;
}

.card .heading {
  font-size: 24px;
  margin: 24px 0 16px;
  font-weight: 600;
}

.card .categories {
  display: flex;
  gap: 8px;
}

.card .categories span {
  background-color: #e81cff;
  padding: 4px 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 50em;
}

.card .footer {
  font-weight: 600;
  color: #717171;
  margin-right: 4px;
}

.card:hover {
  transform:scale(1.1);
  box-shadow: 0px 0px 15px 2px red;
}
.value{
	text-align:center;
}
#qr{
        display:none;
        padding:2vh 2vh 2vh 2vh;
        text-align:center;
        color:white;
        font-size:2vh;
        position:fixed;
        z-index:4;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        background-color:#282424;
        width:40vh;
        height:40vh;
        border-radius:5vh;
        box-shadow:3px 3px 25px 2px black;
    }
    .upi{
        background-color:#fc7f03;
        color:white;
        width:fit-content;
        height:fit-content;
        padding:1vh 1vh 1vh 1vh;
        border-radius:3vh;
        border:none;
        transition:all ease 0.2s;
        box-shadow:5px 5px 20px 5px black;
    }
    @keyframes come{0%{opacity:0%}100%{opacity:100%}}
    .come{animation:come 0.2s linear}