@import url("https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
body {
  display:grid;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: rgb(193, 168, 168);
}

.title {
  text-align: center;
  text-decoration: dashed;
  color:#0563bb;
}

.wrap {
  margin-top: 40px;
  height: 260px;
  max-width: 410px;
  background: rgb(249, 245, 245);
  padding: 16px 25px 0;
  border-radius: 1rem;
  transition: height 0.2s ease;
}
.wrap.active {
  height: 530px;
}
.wrap h1 {
  font-size: 21px;
  font-weight: 500;
  /* padding: 1.2rem; */
  /* margin: 1rem; */
}
.wrap header p {
  margin-top: 5px;
  color: #474747;
  font-size: 16px;
  text-transform: lowercase;
}
.wrap .form {
  margin: 20px 0 25px;
}
.wrap :where(input, button) {
  width: 100%;
  height: 55px;
  border: none;
  outline: none;
  border-radius: 5px;
}
.form input {
  font-size: 16px;
  padding: 0 17px;
  border: 1px solid #999;
}
.form button {
  margin-top: 20px;
  color: white;
  background: rgb(101, 43, 43);
  font-size: 17px;
}
.form button:hover {
  cursor: pointer;
  color: #0b0d0f;
  background: rgb(190, 134, 134);
}
.wrap .qr-code {
  display: flex;
  padding: 40px 40px 50px;
  opacity: 0;
  pointer-events: none;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;

}
.wrap.active .qr-code {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s 0.5s ease;
}
.wrap .qr-code img {
  height: 12rem;
}

#download-btn {

  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}

#download-btn:hover {
  background-color: #45a049;
  color:crimson
}

.social-links {
  font-size: 30px;
  display: inline-block;
  color: #e8e6e3;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  text-align: center;

}

.social-links a {
  color: #474747  ;
}

.social-links a:hover {
  color: #0563bb;
}

.footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.footer a {
  text-decoration: none;
  color: #0073e6;
  font-weight:100;
}

.footer a:hover {
  color: #005bb5;
}
