@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background: url('images/bg.png') no-repeat center center / cover;
  animation: animateBg 5s linear infinite;
  overflow: hidden;
}

@keyframes animateBg {
  100% {
    filter: hue-rotate(360deg);
  }
}

.wrapper {
  position: relative;
  width: 400px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 10px 15px;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:rgba(100, 132, 237, 0.375);
  color: #fff;
  border-radius: 5px;
  margin-bottom: 15px;
}
input::placeholder {
    color: rgba(255, 255, 255, 0.9); 
    font-size: 1.1rem;
  }
  

button {
  width: 100%;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: rgba(255, 255, 255, 0.8);
}

#qrcode {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 220px;
    height: 220px;
  }
  

  #downloadLink {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    width: 100%;
  }
 i {
    margin-right: 8px; 
  }
  
  #downloadLink:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
  
.footer {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.9rem;
  color: #ffffffff;
  background: rgba(0, 0, 0, 0.11);
  padding: 10px 0;
  backdrop-filter: blur(5px);
  margin:0;
}
