.page-resources-how-to-login-8k8-com {
  color: #333333; /* Deep gray for text on light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-resources-how-to-login-8k8-com__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000000; /* Main color as background for hero */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-resources-how-to-login-8k8-com__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 2;
}

.page-resources-how-to-login-8k8-com__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-resources-how-to-login-8k8-com__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-how-to-login-8k8-com__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-login-8k8-com__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.05em;
  text-align: center;
}

.page-resources-how-to-login-8k8-com__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-how-to-login-8k8-com__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources-how-to-login-8k8-com__button--register, 
.page-resources-how-to-login-8k8-com__button--register-large {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-how-to-login-8k8-com__button--register:hover, 
.page-resources-how-to-login-8k8-com__button--register-large:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-resources-how-to-login-8k8-com__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.page-resources-how-to-login-8k8-com__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Ensure no filter is applied to change image color */
  filter: none; 
}

.page-resources-how-to-login-8k8-com__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-top: -60px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 3;
}

.page-resources-how-to-login-8k8-com__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-how-to-login-8k8-com__back-link:hover {
  color: #FCBC45;
}

.page-resources-how-to-login-8k8-com__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-how-to-login-8k8-com__subsection-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 35px;
  margin-bottom: 20px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-resources-how-to-login-8k8-com__paragraph {
  margin-bottom: 18px;
  font-size: 1.05em;
  color: #333333;
}

.page-resources-how-to-login-8k8-com__ordered-list,
.page-resources-how-to-login-8k8-com__unordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #333333;
}

.page-resources-how-to-login-8k8-com__ordered-list li,
.page-resources-how-to-login-8k8-com__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.0em;
}

.page-resources-how-to-login-8k8-com__ordered-list li strong,
.page-resources-how-to-login-8k8-com__unordered-list li strong {
  color: #000000;
}

.page-resources-how-to-login-8k8-com__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* Ensure no filter is applied to change image color */
  filter: none; 
  min-width: 200px;
  min-height: 200px;
}

.page-resources-how-to-login-8k8-com__paragraph a,
.page-resources-how-to-login-8k8-com__unordered-list a,
.page-resources-how-to-login-8k8-com__ordered-list a {
  color: #FCBC45; /* Link color */
  text-decoration: none;
  font-weight: bold;
}

.page-resources-how-to-login-8k8-com__paragraph a:hover,
.page-resources-how-to-login-8k8-com__unordered-list a:hover,
.page-resources-how-to-login-8k8-com__ordered-list a:hover {
  text-decoration: underline;
}

.page-resources-how-to-login-8k8-com__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-how-to-login-8k8-com__grid-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding-bottom: 20px;
}

.page-resources-how-to-login-8k8-com__grid-item img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  /* Ensure no filter is applied to change image color */
  filter: none; 
  min-width: 200px;
  min-height: 200px;
}

.page-resources-how-to-login-8k8-com__grid-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-resources-how-to-login-8k8-com__grid-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-resources-how-to-login-8k8-com__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
}

.page-resources-how-to-login-8k8-com__button--small:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-how-to-login-8k8-com__call-to-action {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-resources-how-to-login-8k8-com__button--promo {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.page-resources-how-to-login-8k8-com__button--promo:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-resources-how-to-login-8k8-com__button--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-how-to-login-8k8-com__button--download:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources-how-to-login-8k8-com__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-how-to-login-8k8-com__button--learn-more:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-how-to-login-8k8-com__button--support {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-how-to-login-8k8-com__button--support:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-how-to-login-8k8-com__button--faq {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.page-resources-how-to-login-8k8-com__button--faq:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-resources-how-to-login-8k8-com__related-resources {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.page-resources-how-to-login-8k8-com__resource-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-how-to-login-8k8-com__resource-list li {
  margin-bottom: 12px;
}

.page-resources-how-to-login-8k8-com__resource-list a {
  color: #000000;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-how-to-login-8k8-com__resource-list a:hover {
  color: #FCBC45;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-how-to-login-8k8-com__hero-title {
    font-size: 2.2em;
  }

  .page-resources-how-to-login-8k8-com__hero-description {
    font-size: 1em;
  }

  .page-resources-how-to-login-8k8-com__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-login-8k8-com__button {
    width: 100%;
    max-width: 280px;
  }

  .page-resources-how-to-login-8k8-com__content-area {
    padding: 20px 15px;
    margin-top: -40px;
  }

  .page-resources-how-to-login-8k8-com__section-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-login-8k8-com__subsection-title {
    font-size: 1.4em;
  }

  .page-resources-how-to-login-8k8-com__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-how-to-login-8k8-com__grid-item img {
    height: 200px; /* Adjust for smaller screens */
  }

  .page-resources-how-to-login-8k8-com__call-to-action {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure all images within the content area are responsive and don't overflow */
  .page-resources-how-to-login-8k8-com img {
    max-width: 100%;
    height: auto;
    /* Ensure no filter is applied to change image color */
    filter: none; 
  }
}