body{
margin:0;
font-family:Arial, sans-serif;
background:linear-gradient(135deg,#0f0c29,#302b63,#24243e);
height:100vh;
display:flex;
justify-content:center;
align-items:center;
color:white;
}

.container{
background:rgba(0,0,0,0.6);
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 0 30px rgba(0, 255, 136, 0.6);
width:320px;
}

h1{
margin-bottom:20px;
background:linear-gradient(90deg,#00f2ff,#00ff73);
background-clip:text;
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

input{
width:100%;
padding:12px;
border:none;
border-radius:10px;
outline:none;
font-size:15px;
margin-bottom:20px;
}

.buttons{
display:flex;
gap:10px;
justify-content:center;
}

button{
padding:10px 15px;
border:none;
border-radius:10px;
cursor:pointer;
font-weight:bold;
background:linear-gradient(90deg,#00c3ff,#00ff73);
color:white;
transition:0.3s;
}

button:hover{
transform:scale(1.05);
box-shadow:0 0 15px #00ff73;
}

#qrBox{
margin-top:20px;
display:flex;
justify-content:center;
}

#qrcode{
padding:10px;
background:white;
border-radius:10px;
}