* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Pippins', sans-serif !important;
  height: 100vh;

  background-color: #1b3c53;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.container {
  width: 60%;
  background-color: rgb(69, 104, 130);
  padding: 2rem;
  margin: 5% auto;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.container:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}
.content {
  display: grid;

  align-items: center;
  gap: 1rem;
}
.content h2 {
  color: #163850;
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}
.content input[type='text'],
button {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
}
.content input[type='text'] {
  border: 1px solid #1b3c53;
  color: #1b3c53;
}
.content input[type='text']:focus {
  outline: 1px solid #1b3c53;
}
button {
  border: none;
  cursor: pointer;
  background-color: rgba(27, 60, 83, 0.7);
  color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
button:hover {
  transform: translateY(-2px);
  background-color: rgba(27, 60, 83, 1);
}

#qrImg {
  margin: 3% auto;
}
#download {
  display: none;
}

.footer {
  text-align: center;
  padding: 1rem;
  color: #ffffffcc;
  background-color: #1b3c53;
  font-size: 1rem;
  margin-top: 2rem;
  border-top: 1px solid #ffffff22;
  border-radius: 0.5rem;
}
.footer .love {
  color: red;
  font-size: 1.2rem;
  vertical-align: middle;
  margin: 0 5px;
}
/* ------------------ */
/* ✅ Responsive Breakpoints */
/* ------------------ */

/* Small devices (phones, less than 600px) */
@media (max-width: 600px) {
  .container {
    padding: 1.5rem;
    width: 100%;
    margin: 10% 5%;
  }

  .content h2 {
    font-size: 2rem;
  }

  .content input[type='text'],
  button {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }

  #qrImg {
    width: 150px;
    height: 150px;
  }
}

/* Medium devices (tablets, 600px to 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .container {
    padding: 2rem;
    width: 100%;
    margin: 5%;
  }

  .content h2 {
    font-size: 2.5rem;
  }

  .content input[type='text'],
  button {
    font-size: 1.1rem;
  }

  #qrImg {
    width: 180px;
    height: 180px;
  }
}
