 html, body {
  height: 100%; /* Ensure the body and HTML elements take up the full viewport height */
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(to right, #000, #a60903);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push footer to the bottom */
  min-height: 100vh; /* Ensure body takes up the full viewport height */
  position: relative;
}

#datasale{
  font-size: 8px;
  color: #6b7280;
}

.datasell{
  margin-left: 10px;
}
/* Footer Styling */
footer { 
  padding: 20px 0;
  text-align: center;
  width: 100%;
  /*margin-top: 400px;*/
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* Allows wrapping on small screens */
  gap: 15px; /* Space between each element */
  margin-bottom: 10px;
}

.footer-links a {
  color: #6b7280;
  margin: 0 15px;
  text-decoration: none;
  font-size: 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-logo {
  height: 100px; /* Adjust the size as needed */
  margin-right: 10px; /* Add spacing between logo and links */
  vertical-align: middle; /* Align the logo vertically with the links */
  max-width: 100%;
  width: 100px;
}

.unsubscribe-btn {
  background-color: #a60903;
  color: #fff;
  border: 1px solid transparent; /* Add border with transparent color */
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 8px;
}

.unsubscribe-btn:hover {
  background-color: #fff;
  color: #a60903;
  border: 1px solid #a60903; /* Only change the border color */
}

.copyright {
  color: #6b7280;
  font-size: 8px;
}

.divider {
  width: 80%;
  margin: 20px auto 10px;
  border-top: 1px solid #6b7280;
}


  header {
    background: linear-gradient(to right, #000, #a60903);
    width: 100%;
    padding: 10px 20px; /* Reduced padding for a smaller header */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 0; /* Moved header closer to the top */
    left: 0;
  }

  .logo {
    width: 150px;
    height: auto;
  }

  /* Center the logo on small screens */
  @media (max-width: 768px) {
    header {
      justify-content: center;
    }
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    z-index: 2;
    margin-top: 120px; /* Added margin to avoid overlapping with the header */
  }

  .image-card {
    width: 300px; /* Reduced width slightly */
    height: 400px; /* Reduced height slightly */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
  }

  /* Left image styling */
  .image-left {
    left: -110px; /* Adjusted left positioning */
    top: 100px; /* Adjusted top position */
    transform: rotate(-2deg);
  }

  /* Right image styling */
  .image-right {
      right: -60px;
      top: 100px;
      transform: rotate(2deg);
      z-index: 1;
  }

  /* Second image for behind the right one */
  .image-right-behind {
    right: -160px; /* More to the right for background */
    top: 10px; /* Adjusted top to avoid overlapping */
    transform: rotate(5deg);
  }

  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Text content styles */
  .text-content {
    text-align: center;
    max-width: 600px;
    margin-bottom: 30px;
  }

  .text-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
  }

  .text-content p {
    font-size: 16px;
    margin-bottom: 10px;
    color: white;
  }


  .form-box {
      background: rgba(76, 19, 145, 0.8); /* Background color with transparency */
      background: #a60903; 
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      display: none;
      width: 100%;
      max-width: 600px;
      position: relative; 
      z-index: 2; /* Ensure the form box is above the backgrounds */
  }

  .form-box.active {
      display: block;
  }
  .form-box h4 {
      font-size: 18px;
      color: #ffffff; 
  }
  .btn-center {
      display: flex;
      justify-content: center;
  }
  .btn-center .btn {
      margin: 0 10px;
  }
  .btn-primary {
      color: #ffffff; 
      font-weight: bold; 
      background-color: #a60903; 
      border-color: #ffffff; 
      transition: all 0.3s ease; 
  }
  .btn-primary:hover {
      border: 1px solid #fff; 
      color: #fff; 
      background-color: #a60903; 
  }
  .btn-secondary {
      border: 1px solid #fff; 
      color: #fff; 
      font-weight: bold; 
      background-color: #a60903; 
      transition: all 0.3s ease; 
  }
  .btn-secondary:hover {
      color: #a60903; 
      background-color: #a60903; 
      border-color: #a60903; 
  }
  .centered-paragraph {
      text-align: center;
      margin: 20px 0;
  }
  .input-group-prepend span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
  }
  .input-group-text {
      border: 1px solid #ced4da;
      border-radius: 0.25rem;
      background-color: #e9ecef;
  }
  .input-group-text i {
      font-size: 18px;
  }
  .input-group input {
      border-left: none;
  }
  .input-group .input-group-prepend {
      margin-right: -1px;
  }
  label {
      color: #ffffff;
  }

  .form-control {
      border: 1px solid #fff;
      color: #fff;
      background-color: #a60903;
  }

  .form-control option {
      color: #fff;
      background-color: #a60903;
  }

  #email {
  background-color: white;
  color: black;
  }

  #username {
      background-color: white;
      color: black;
  }

  #password {
      background-color: white;
      color: black;
  }

  #text-para{
      color:#fff;
      margin-top: 0;
  margin-bottom: 1rem;
  font-size: 10px;
  }

  .form-group {
  margin-bottom: 20px;
}

.btn-group {
  margin-top: 10px; /* Add spacing between label and buttons */
  display: flex; /* Align buttons horizontally */
  gap: 10px; /* Space between buttons */
}

.btn-option {
  border: 1px solid #fff;
  color: #fff;
  background-color: #a60903;
  padding: 10px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px; /* Add border radius */
  width: 100px; /* Adjust width as needed */
  text-align: center;
  transition: all 0.3s ease; /* Smooth transition */
}

.btn-option .btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px; /* Space between icon and text */
  background-image: url('https://api-trck.b-cdn.net/lp1/lp1_images/btn-icon.png');
  background-size: cover;
  visibility: hidden; /* Hide by default */
}

.btn-option.selected {
  border: 1px solid #a60903;
  color: #a60903;
  background-color: #fff;
}

.btn-option.selected .btn-icon {
  visibility: visible; /* Show icon when selected */
}

.btn-option:hover {
  border: 1px solid #a60903;
  color: #000;
  background-color: #fff;
}

.error-message {
  color: #ffcc00;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

  

  @media only screen and (max-width: 425px) {
  .image-left, 
  .image-right, 
  .image-right-behind, 
  .yellow-green-circle, 
  .purple-circle {
      display: none;
  }
  .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  z-index: 2;
  margin-top: 70px;
  }

  .text-content h1 {
      font-size: 25px;
      margin-bottom: 15px;
  }

  .text-content p {
      font-size: 12px;
      margin-bottom: 10px;
  }
}

@media only screen and (max-width: 725px) {
  .image-left, 
  .image-right, 
  .image-right-behind, 
  .yellow-green-circle, 
  .purple-circle {
      display: none;
  }
  .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  z-index: 2;
  margin-top: 70px;
  }

  .text-content h1 {
      font-size: 25px;
      margin-bottom: 15px;
      color: white;
  }

  .text-content p {
      font-size: 12px;
      margin-bottom: 10px;
  }
}

@media only screen and (max-width: 800px) {
  .image-left, 
  .image-right, 
  .image-right-behind, 
  .yellow-green-circle, 
  .purple-circle {
      display: none;
  }
}