/* style/register-login.css */
.page-register-login {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-register-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login__section {
  padding: 60px 0;
  text-align: center;
}

.page-register-login__section:nth-child(even) {
  background-color: #f8f8f8;
}

.page-register-login__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-register-login__section-description {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-register-login__hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #fff;
  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:good88_hero_pattern,abstract_shapes,subtle_texture]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-register-login__hero .page-register-login__container {
  position: relative;
  z-index: 1;
}

.page-register-login__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* High contrast with dark blue background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login__hero-subtitle {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-register-login__hero-actions .page-register-login__button {
  margin: 0 15px;
}

.page-register-login__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-register-login__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-register-login__button--primary {
  background-color: #FFCC00;
  color: #003366; /* High contrast with yellow */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-register-login__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-register-login__button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.4);
}

.page-register-login__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.6);
}

.page-register-login__button--full-width {
  width: 100%;
  margin-top: 20px;
}

.page-register-login__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-register-login__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

/* Benefits Section */
.page-register-login__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-register-login__benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login__benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-register-login__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.page-register-login__benefit-text {
  color: #666;
}

/* Process Section */
.page-register-login__process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.page-register-login__step {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
}

.page-register-login__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #003366;
  color: #FFCC00;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.3);
}

.page-register-login__step-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-register-login__step-text {
  color: #666;
}

.page-register-login__process-image {
  max-width: 80%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Login Section */
.page-register-login__login-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.page-register-login__login-form {
  flex: 1 1 400px;
  max-width: 450px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
}

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

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

.page-register-login__input {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  color: #333;
}

.page-register-login__input:focus {
  border-color: #FFCC00;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

.page-register-login__forgot-password {
  margin-top: 15px;
  text-align: right;
}

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

.page-register-login__forgot-password a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

.page-register-login__login-image {
  flex: 1 1 400px;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* App Download Section */
.page-register-login__section--app-download {
  background-color: #003366;
  color: #fff;
}

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

.page-register-login__section--app-download .page-register-login__section-description {
  color: #e0e0e0;
}

.page-register-login__app-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  text-align: left;
}

.page-register-login__app-text {
  flex: 1 1 450px;
  max-width: 550px;
}

.page-register-login__app-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-register-login__app-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-register-login__app-text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-register-login__app-text ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFCC00;
  font-weight: bold;
}

.page-register-login__app-image {
  flex: 1 1 350px;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-register-login__download-note {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 20px;
}

/* Promotions Section */
.page-register-login__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-register-login__promotion-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-register-login__promotion-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-register-login__promotion-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-register-login__promotion-text {
  color: #666;
  margin-bottom: 20px;
}

/* Safety Section */
.page-register-login__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-register-login__safety-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login__safety-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-register-login__safety-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.page-register-login__safety-text {
  color: #666;
}

/* FAQ Section */
.page-register-login__faq-list {
  margin-top: 50px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-register-login__faq-question {
  font-size: 1.25em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

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

.page-register-login__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-register-login__faq-answer {
  color: #555;
  font-size: 1.0em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

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

.page-register-login__faq-image {
  max-width: 80%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Call to action text */
.page-register-login__call-to-action-text {
  font-size: 1.2em;
  margin-top: 40px;
  color: #333;
}

.page-register-login__call-to-action-text .page-register-login__link-in-text {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-register-login__text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-register-login__hero-title {
    font-size: 2.8em;
  }

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

  .page-register-login__grid, .page-register-login__process-steps, .page-register-login__promotion-grid, .page-register-login__safety-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-register-login__hero {
    padding: 60px 0;
  }

  .page-register-login__hero-title {
    font-size: 2.2em;
  }

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

  .page-register-login__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-register-login__hero-actions .page-register-login__button {
    margin: 0;
    width: 100%;
  }

  .page-register-login__section {
    padding: 40px 0;
  }

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

  .page-register-login__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-register-login__login-form-wrapper, .page-register-login__app-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-register-login__login-form, .page-register-login__login-image, .page-register-login__app-text, .page-register-login__app-image {
    max-width: 100%;
    flex: none;
  }

  .page-register-login__faq-list {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .page-register-login__hero-title {
    font-size: 1.8em;
  }

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

  .page-register-login__button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-register-login__benefit-item, .page-register-login__step, .page-register-login__promotion-card, .page-register-login__safety-item {
    padding: 20px;
  }

  .page-register-login__faq-item {
    padding: 15px 20px;
  }
  .page-register-login__faq-question {
    font-size: 1.1em;
  }
}