/* style/register-login-two-factor-authentication-guide.css */

.page-register-login-two-factor-authentication-guide {
  font-family: 'Arial', sans-serif;
  color: #E5E7EB; /* Light grey for general text on dark background */
  background-color: #1A202C; /* Main dark background */
}

.page-register-login-two-factor-authentication-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-two-factor-authentication-guide__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-register-login-two-factor-authentication-guide__container--reverse {
  flex-direction: row-reverse;
}

.page-register-login-two-factor-authentication-guide__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a62 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register-login-two-factor-authentication-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,security_pattern,dark_gradient]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-register-login-two-factor-authentication-guide__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.page-register-login-two-factor-authentication-guide__hero-subtitle {
  font-size: 1.5em;
  color: #F8F9FA; /* Off-white for subtitle */
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-register-login-two-factor-authentication-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-register-login-two-factor-authentication-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-register-login-two-factor-authentication-guide__btn--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-register-login-two-factor-authentication-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-register-login-two-factor-authentication-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-register-login-two-factor-authentication-guide__btn--text {
  background-color: transparent;
  color: #FFD700;
  border: none;
  padding: 10px 20px;
  text-decoration: underline;
  font-size: 1em;
  margin-top: 20px;
}

.page-register-login-two-factor-authentication-guide__btn--text:hover {
  color: #e6c200;
  text-decoration: none;
}

.page-register-login-two-factor-authentication-guide__section {
  padding: 80px 0;
}

.page-register-login-two-factor-authentication-guide__section--intro,
.page-register-login-two-factor-authentication-guide__section--benefits {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-register-login-two-factor-authentication-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
}

.page-register-login-two-factor-authentication-guide__description {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #CBD5E0; /* Lighter grey for descriptions */
}

.page-register-login-two-factor-authentication-guide__content {
  flex: 1;
}

.page-register-login-two-factor-authentication-guide__content h2 {
  text-align: left;
  margin-top: 0;
}

.page-register-login-two-factor-authentication-guide__content p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #E5E7EB;
}

.page-register-login-two-factor-authentication-guide__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-register-login-two-factor-authentication-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-register-login-two-factor-authentication-guide__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-register-login-two-factor-authentication-guide__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #E5E7EB;
  display: flex;
  align-items: flex-start;
}

.page-register-login-two-factor-authentication-guide__list-icon {
  color: #FFD700;
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.5;
}

.page-register-login-two-factor-authentication-guide__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-register-login-two-factor-authentication-guide__inline-link:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-register-login-two-factor-authentication-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register-login-two-factor-authentication-guide__grid-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-register-login-two-factor-authentication-guide__grid-item:hover {
  transform: translateY(-5px);
}

.page-register-login-two-factor-authentication-guide__step-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-register-login-two-factor-authentication-guide__grid-item p {
  color: #CBD5E0;
  line-height: 1.6;
}

.page-register-login-two-factor-authentication-guide__step-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  background-color: #2D3748;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.page-register-login-two-factor-authentication-guide__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 30px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 10px;
}

.page-register-login-two-factor-authentication-guide__step-content {
  flex-grow: 1;
}

.page-register-login-two-factor-authentication-guide__step-heading {
  font-size: 2em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-register-login-two-factor-authentication-guide__step-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #E5E7EB;
}

.page-register-login-two-factor-authentication-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-two-factor-authentication-guide__list--inner {
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-register-login-two-factor-authentication-guide__list--inner li {
  font-size: 1em;
  color: #CBD5E0;
}

.page-register-login-two-factor-authentication-guide__list--inner li strong {
  color: #FFD700;
}

.page-register-login-two-factor-authentication-guide__important-note {
  background-color: #FFD7001A; /* Light gold tint for emphasis */
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-top: 20px;
  font-style: italic;
  color: #FFD700;
  font-weight: bold;
}

.page-register-login-two-factor-authentication-guide__success-message {
  background-color: #28a74520; /* Green tint */
  border-left: 5px solid #28a745;
  padding: 15px 20px;
  margin-top: 20px;
  color: #28a745;
  font-weight: bold;
}

.page-register-login-two-factor-authentication-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-register-login-two-factor-authentication-guide__tips-list li {
  background-color: #2D3748;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #E5E7EB;
  line-height: 1.6;
  font-size: 1.05em;
}

.page-register-login-two-factor-authentication-guide__tips-list li strong {
  color: #FFD700;
}

.page-register-login-two-factor-authentication-guide__tips-list .page-register-login-two-factor-authentication-guide__list-icon {
  font-size: 1em;
  margin-top: 3px;
}

.page-register-login-two-factor-authentication-guide__faq-item {
  background-color: #2D3748;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-register-login-two-factor-authentication-guide__faq-question {
  color: #FFD700;
  font-size: 1.4em;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-register-login-two-factor-authentication-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-register-login-two-factor-authentication-guide__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-register-login-two-factor-authentication-guide__faq-answer {
  color: #E5E7EB;
  padding: 0 25px 20px;
  margin: 0;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-register-login-two-factor-authentication-guide__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content height */
  padding-top: 10px;
}

.page-register-login-two-factor-authentication-guide__cta-section {
  background-color: #1A202C;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #3a4a62;
}

.page-register-login-two-factor-authentication-guide__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-register-login-two-factor-authentication-guide__cta-description {
  font-size: 1.2em;
  color: #CBD5E0;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-register-login-two-factor-authentication-guide__hero-title {
    font-size: 2.8em;
  }
  .page-register-login-two-factor-authentication-guide__hero-subtitle {
    font-size: 1.3em;
  }
  .page-register-login-two-factor-authentication-guide__section-title {
    font-size: 2em;
  }
  .page-register-login-two-factor-authentication-guide__container--flex {
    flex-direction: column;
  }
  .page-register-login-two-factor-authentication-guide__container--reverse {
    flex-direction: column;
  }
  .page-register-login-two-factor-authentication-guide__image-wrapper {
    margin-top: 40px;
  }
  .page-register-login-two-factor-authentication-guide__step-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register-login-two-factor-authentication-guide__step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-register-login-two-factor-authentication-guide__step-heading {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-register-login-two-factor-authentication-guide__hero-title {
    font-size: 2.2em;
  }
  .page-register-login-two-factor-authentication-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-register-login-two-factor-authentication-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register-login-two-factor-authentication-guide__btn--secondary {
    margin-left: 10px;
  }
  .page-register-login-two-factor-authentication-guide__section {
    padding: 60px 0;
  }
  .page-register-login-two-factor-authentication-guide__section-title {
    font-size: 1.8em;
  }
  .page-register-login-two-factor-authentication-guide__step-heading {
    font-size: 1.6em;
  }
  .page-register-login-two-factor-authentication-guide__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-register-login-two-factor-authentication-guide__hero-title {
    font-size: 1.8em;
  }
  .page-register-login-two-factor-authentication-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-register-login-two-factor-authentication-guide__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-register-login-two-factor-authentication-guide__grid {
    grid-template-columns: 1fr;
  }
  .page-register-login-two-factor-authentication-guide__step-block {
    padding: 20px;
  }
  .page-register-login-two-factor-authentication-guide__step-number {
    font-size: 2.5em;
  }
  .page-register-login-two-factor-authentication-guide__faq-question,
  .page-register-login-two-factor-authentication-guide__faq-question.active {
    padding: 15px 20px;
  }
  .page-register-login-two-factor-authentication-guide__faq-question::after {
    right: 20px;
  }
  .page-register-login-two-factor-authentication-guide__faq-answer {
    padding: 0 20px 15px;
  }
}