/* style/blog-how-to-securely-login-21tr88.css */

/* Base styles for the page */
.page-blog-how-to-securely-login-21tr88 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.page-blog-how-to-securely-login-21tr88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-securely-login-21tr88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  overflow: hidden;
  background-color: var(--background);
}

.page-blog-how-to-securely-login-21tr88__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-blog-how-to-securely-login-21tr88__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-securely-login-21tr88__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  color: var(--text-main);
  padding: 20px;
  border-radius: 10px;
  background: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-securely-login-21tr88__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-securely-login-21tr88__intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-how-to-securely-login-21tr88__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-how-to-securely-login-21tr88__btn-primary,
.page-blog-how-to-securely-login-21tr88__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-how-to-securely-login-21tr88__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-how-to-securely-login-21tr88__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-securely-login-21tr88__btn-secondary {
  background-color: var(--card-bg);
  color: var(--main-color);
  border: 2px solid var(--border-color);
}

.page-blog-how-to-securely-login-21tr88__btn-secondary:hover {
  background-color: var(--main-color);
  color: #ffffff;
  border-color: var(--main-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-securely-login-21tr88__cta-buttons--center {
  margin-top: 30px;
}

/* Content Sections */
.page-blog-how-to-securely-login-21tr88__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider);
}

.page-blog-how-to-securely-login-21tr88__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-how-to-securely-login-21tr88__light-bg {
  background-color: var(--background);
  color: var(--text-main);
}

.page-blog-how-to-securely-login-21tr88__dark-bg {
  background-color: var(--deep-green);
  color: var(--text-main);
}

.page-blog-how-to-securely-login-21tr88__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-securely-login-21tr88__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--glow);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-securely-login-21tr88__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-how-to-securely-login-21tr88__text-main {
  color: var(--text-main);
}

.page-blog-how-to-securely-login-21tr88__text-link {
  color: var(--glow);
  text-decoration: underline;
}

.page-blog-how-to-securely-login-21tr88__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-how-to-securely-login-21tr88__numbered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-how-to-securely-login-21tr88__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: var(--text-secondary);
}

.page-blog-how-to-securely-login-21tr88__image-in-content {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
}

/* FAQ Section */
.page-blog-how-to-securely-login-21tr88__faq-section {
  padding: 60px 0;
  background-color: var(--background);
  color: var(--text-main);
}

.page-blog-how-to-securely-login-21tr88__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-securely-login-21tr88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
  list-style: none; /* For details tag */
}

.page-blog-how-to-securely-login-21tr88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-securely-login-21tr88__faq-question:hover {
  background-color: var(--deep-green);
}

.page-blog-how-to-securely-login-21tr88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow);
  transition: transform 0.3s ease;
}

.page-blog-how-to-securely-login-21tr88__faq-item[open] .page-blog-how-to-securely-login-21tr88__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-securely-login-21tr88__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-blog-how-to-securely-login-21tr88__faq-item[open] .page-blog-how-to-securely-login-21tr88__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  transition: max-height 0.5s ease-in;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-securely-login-21tr88__main-title {
    font-size: clamp(2em, 4.5vw, 2.8em);
  }
  .page-blog-how-to-securely-login-21tr88__section-title {
    font-size: 2em;
  }
  .page-blog-how-to-securely-login-21tr88__sub-title {
    font-size: 1.6em;
  }
  .page-blog-how-to-securely-login-21tr88__paragraph,
  .page-blog-how-to-securely-login-21tr88__list-item,
  .page-blog-how-to-securely-login-21tr88__intro-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-securely-login-21tr88__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-how-to-securely-login-21tr88__hero-content {
    padding: 15px;
  }
  .page-blog-how-to-securely-login-21tr88__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-blog-how-to-securely-login-21tr88__intro-description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-blog-how-to-securely-login-21tr88__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-how-to-securely-login-21tr88__btn-primary,
  .page-blog-how-to-securely-login-21tr88__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important; /* Ensure full width on mobile */
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-securely-login-21tr88__content-section {
    padding: 40px 0;
  }
  .page-blog-how-to-securely-login-21tr88__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-securely-login-21tr88__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-how-to-securely-login-21tr88__sub-title {
    font-size: 1.4em;
  }
  .page-blog-how-to-securely-login-21tr88__paragraph,
  .page-blog-how-to-securely-login-21tr88__list-item {
    font-size: 0.95em;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-securely-login-21tr88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Mobile FAQ */
  .page-blog-how-to-securely-login-21tr88__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-blog-how-to-securely-login-21tr88__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }
}

/* Color Contrast Fixes (if needed, based on body background assumed dark) */
.page-blog-how-to-securely-login-21tr88__dark-bg {
  color: var(--text-main);
}

.page-blog-how-to-securely-login-21tr88__light-bg {
  color: var(--text-secondary);
}

.page-blog-how-to-securely-login-21tr88 p,
.page-blog-how-to-securely-login-21tr88 li {
  color: var(--text-secondary);
}

.page-blog-how-to-securely-login-21tr88__hero-content {
  background: var(--card-bg);
  color: var(--text-main);
}

.page-blog-how-to-securely-login-21tr88__faq-item {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-how-to-securely-login-21tr88__faq-answer p {
  color: var(--text-secondary);
}