/* style/register-login.css */
.page-register-login__hero {
  background: linear-gradient(135deg, #003366, #1a4f80);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register-login__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern,new88]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-register-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-register-login__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Contrast with dark background */
  line-height: 1.2;
}

.page-register-login__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-register-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-register-login__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;
  border: none;
}

.page-register-login__btn--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-register-login__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-register-login__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-register-login__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-register-login__section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-register-login__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-register-login__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-register-login__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-register-login__section-sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-register-login__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login__content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-register-login__section--login .page-register-login__content-grid {
  flex-direction: row-reverse; /* Swap order for login section */
}

.page-register-login__form-wrapper,
.page-register-login__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-register-login__form-wrapper {
  background-color: #f0f5fa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register-login__form-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 30px;
  text-align: center;
}

.page-register-login__form-group {
  margin-bottom: 20px;
}

.page-register-login__form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #003366;
}

.page-register-login__form-group input[type="text"],
.page-register-login__form-group input[type="password"],
.page-register-login__form-group input[type="tel"],
.page-register-login__form-group input[type="email"] {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333333;
}

.page-register-login__form-group input[type="text"]:focus,
.page-register-login__form-group input[type="password"]:focus,
.page-register-login__form-group input[type="tel"]:focus,
.page-register-login__form-group input[type="email"]:focus {
  border-color: #FFCC00;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

.page-register-login__checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-register-login__checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #FFCC00;
}

.page-register-login__btn--submit {
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  background-color: #003366;
  color: #ffffff;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-register-login__btn--submit:hover {
  background-color: #004d99;
}

.page-register-login__forgot-password {
  text-align: center;
  margin-top: 20px;
}

.page-register-login__link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-register-login__link:hover {
  text-decoration: underline;
  color: #FFCC00;
}

.page-register-login__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register-login__image-caption {
  text-align: center;
  font-style: italic;
  margin-top: 15px;
  color: #666666;
}

.page-register-login__list {
  list-style-type: decimal;
  margin: 0 auto 30px auto;
  padding-left: 40px;
  max-width: 900px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #333333;
}

.page-register-login__list li {
  margin-bottom: 10px;
}

.page-register-login__list li strong {
  color: #003366;
}

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

.page-register-login__benefit-item {
  background-color: #f0f5fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register-login__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-register-login__benefit-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-register-login__benefit-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-register-login__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-register-login__faq-item {
  background-color: #f0f5fa;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register-login__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-register-login__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFCC00;
}

.page-register-login__faq-question.active::after {
  content: '-';
}

.page-register-login__faq-answer {
  font-size: 1.05em;
  line-height: 1.7;
  color: #555555;
  display: none;
}

.page-register-login__faq-answer.active {
  display: block;
}

.page-register-login__btn--download {
  margin-top: 20px;
  background-color: #003366;
  color: #ffffff;
  border: none;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login__btn--download:hover {
  background-color: #004d99;
}

.page-register-login__section--cta {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
}

.page-register-login__section--cta .page-register-login__section-title {
  color: #FFCC00;
}

.page-register-login__section--cta .page-register-login__text {
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .page-register-login__title {
    font-size: 2.5em;
  }

  .page-register-login__subtitle {
    font-size: 1.2em;
  }

  .page-register-login__section-title {
    font-size: 2em;
  }

  .page-register-login__section-sub-title {
    font-size: 1.5em;
  }

  .page-register-login__content-grid {
    flex-direction: column;
  }

  .page-register-login__section--login .page-register-login__content-grid {
    flex-direction: column; /* Keep column order for login section on mobile */
  }

  .page-register-login__form-wrapper,
  .page-register-login__image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-register-login__form-wrapper {
    padding: 30px;
  }

  .page-register-login__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-register-login__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-register-login__title {
    font-size: 2em;
  }

  .page-register-login__subtitle {
    font-size: 1em;
  }

  .page-register-login__section-title {
    font-size: 1.8em;
  }

  .page-register-login__cta-buttons {
    flex-direction: column;
  }

  .page-register-login__btn {
    width: 100%;
  }

  .page-register-login__form-wrapper {
    padding: 20px;
  }

  .page-register-login__faq-question {
    font-size: 1.1em;
  }

  .page-register-login__text, .page-register-login__list, .page-register-login__faq-answer, .page-register-login__benefit-description {
    font-size: 0.95em;
  }
}