* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  body {
    font-family: Inter, sans-serif;
    font-style: normal;
    font-variant-caps: normal;
    font-variant-east-asian: normal;
    font-variant-ligatures: normal;
    font-variant-numeric: normal;
  }

  nav {
    height: 4.5rem;
    background-color: #F2F5F9;
    position: sticky;
    width: 100%;
  }

  .navbar {
    display: flex;
    margin-top: 1rem;
    gap: 1rem;
  }

  .nav0{
    height: 2.5rem;
    width: 2.5rem;
    color: #ffffff;
    background-color: #050505;
    border-radius: 50%;
    margin-left: 1rem;
  }

  .nav0 p{
    text-align: center;
    padding-top: 0.7rem;
  }

  .navbar1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .nav1 {
    color: #000000;
    font-size: 0.85rem;
  }

  .nav2 {
    color: #6C727F;
    font-size: 0.95rem;
  }
 

  main {

  }

  .mainsection {
    display: flex;
    flex-direction: column;
  }

  .pw {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: #fdfdfd;
    background-size:24px 24px;
    background-image: linear-gradient(to right, #0000000a 1px, transparent 1px), linear-gradient(to bottom, #0000000a 1px, transparent 1px);
    height: 12rem;
    text-align: center;
  }

  .pw h1 {
    font-size: 3.75rem;
    font-family: SF Pro Display, Inter, sans-serif;
    background: linear-gradient(90deg, #2d2d2d, #272a2e, #272729); /* Your gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Optional for Firefox support */
    background-clip: text;
    color: transparent;
  }

  .button {
    padding: 0.5rem 0.5rem;
    border-radius: 10px;
    border: none;
    background-color: rgb(0, 0, 0);
    color: #EFF5FF;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .button span {
    font-size: 1.5rem;
    padding-right: 0.5rem;
  }

  .coupon-section {
    background-color: #F8FAFC;
  }

  .coupon {
    margin: auto;
  }
 
  .codesec {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
  }

.coupon-container {
  background: white;
  padding: 10px 10px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 20%;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 0.75rem;
}

.coupon-left {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.coupon-batch {
  display: flex;
  gap: 0.5rem;
}

.tag {
  background: #e7e7e7;
  color: #000000;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
}

.validity {
  font-size: 12px;
  color: rgb(0, 0, 0);
  margin-top: 5px;
}

.coupon-sec {
  display: flex;
  align-items: center;
}

.code1 {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 5px;
  display: inline-block;
  background: #000000;
  padding: 5px 10px;
  border-radius: 5px;
}

.discount {
  font-size: 15px;
  color: rgb(238, 35, 73);
  font-weight: bold;
  margin-left: 10px;
}

.info {
  font-size: 12px;
  color: rgb(17, 0, 206);
  margin-top: 5px;
}

.copy-button {
  background: none;
  border: 1px solid #000000;
  color: #000000;
  padding: 2px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  grid-area: 1rem;
}

.copy-button span {
  margin-left: 0.5rem;
}

.copy-button:hover {
  background: #1c1c1d;
  color: white;
}

footer {
  background-color: #eeeeee;
}

.footer {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgb(107, 114, 128);
  display: flex;
  justify-content: space-between;
  padding: 30px 30px;
}

@media screen and (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.8rem 0.5rem;
    padding: 0.2rem ;
  }
}

@media screen and (max-width: 425px) {

  .pw {
    height: 10rem;
  }

  .pw div {
    margin-top: 0rem;
  }

  .pw h1 {
    font-size: 1.75rem;
  }

  .codesec {
    margin-top: 0rem;
    gap: 0.15rem;
  }

.coupon-container {
  padding: 15px 10px;
  flex-direction: column;
  align-items: start;
  width: 90%;
  gap: 0.75rem;
}

.coupon-left {
  gap: 0.5rem;
}

.tag {
  font-size: 10px;
  border-radius: 10px;
}

.validity {
  font-size: 11px;
}

.code1 {
  font-size: 15px;
}

.discount {
  font-size: 15px;
}

.info {
  font-size: 12px;
}

.copy-button {
  padding: 1px 4px;
}

.footer {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: rgb(107, 114, 128);
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 30px;
}

}