/* Existing styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, "Microsoft YaHei", "PingFang SC", Helvetica,
    sans-serif;
  background: linear-gradient(
    to bottom,
    #364ff044 10%,
    #ffffff 40%,
    #e9e9f0 100%
  );
  color: black;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: #7208c3;
}

.logo img {
  width: 60%;
  margin-right: 10px;
}

nav ul {
  font-size: 18px;
  line-height: 28px;
  list-style: none;
  display: flex;
}

nav ul li {
  font-size: 18px;
  line-height: 28px;
  margin-top: 7%;
  margin-left: 20px;
  margin-right: 50px;
}

nav ul li a {
  font-size: 18px;
  line-height: 28px;
  text-decoration: underline;
  color: #ffffff;
}

.text-container {
  text-align: center;
  padding: 20px;
  color: rgba(0, 4, 98, 1);
}

nav ul li a:hover {
  font-size: 18px;
  line-height: 28px;

  padding: 2px;
  border-radius: 15px;
  color: #ffffff;
}
.pcontact {
  color: rgb(104, 92, 197);
  display: flex;
  justify-content: center;
}
.text-container span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #703cc1;
}

.text-container h1 {
  font-weight: 700;
  font-size: 2.4rem;
  margin-top: 10px;
}

.success-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.success-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  width: 500px;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.success-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #703cc1;
}

.success-card p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
}

.success-card #user-email {
  font-weight: bold;
  color: #000;
}

.success-card .btn-back {
  background-color: #613eff;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.success-card .btn-back:hover {
  background-color: #002fff;
  box-shadow: 0px 5px 15px rgba(0, 47, 255, 0.5);
}

/* Footer and other existing styles */

footer {
  background-color: #f9f9ff;
  padding: 20px 0;
  border-top: 2px solid #e9e9f0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.add-to-chrome {
  font-size: 1.1rem;
  display: inline-block;
  padding: 15px 25px;
  background-color: rgb(113, 60, 193);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  margin-top: 3%;
}

.add-to-chrome:hover {
  background-color: rgb(114, 112, 240);
}

.add-to-chrome img {
  width: 20px;
  vertical-align: middle;
}

.social-media {
  display: flex;
  margin-right: 10%;
}

.social-icon {
  padding-left: 5%;
  margin-top: 20%;
  margin-right: 2%;
}

.social-icon img {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .logo {
    display: flex;
    align-items: center;
  }
  nav ul li {
    font-size: 0.7rem;
    line-height: 28px;
    margin-top: 7%;
    margin-left: 8px;
    margin-right: 8px;
  }

  .logo img {
    width: 85%;
    margin-right: 10px;
  }

  .success-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
  }

  .nav ul li a {
    font-size: 0.9rem;
    color: white;
    background-color: #973efc;
    padding: 10px;
    border-radius: 15px;
  }

  .text-container h1 {
    font-weight: 700;
    font-size: 1.7rem;
    margin-top: 10px;
  }

  .text-container span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #703cc1;
  }
}

.terms-container {
  background-color: #ffffff;
  padding: 20px;
  margin: 50px auto;
  width: 60%;
  border-radius: 15px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.terms-container h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #703cc1;
  text-align: center;
}

.terms-container p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.terms-container strong {
  color: #000;
}
