/* style/register-login.css */

/* Base styles for the page-register-login scope */
.page-register-login {
  font-family: 'Arial', sans-serif;
  color: #1A2B4C; /* Dark blue for primary text */
  line-height: 1.6;
  background-color: #f8f9fa; /* Light background for readability */
}

.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-of-type(even) {
  background-color: #eef2f6; /* Slightly different background for alternating sections */
}

.page-register-login__section-title {
  font-size: 2.5em;
  color: #1A2B4C;
  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: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-register-login__section-description {
  font-size: 1.1em;
  color: #334768; /* Slightly lighter dark blue for descriptions */
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.page-register-login__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #334768 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register-login__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register-login__hero-subtitle {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e6ed; /* Lighter text for subtitle */
}

.page-register-login__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

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

.page-register-login__button--primary {
  background-color: #FFD700; /* Gold background */
  color: #1A2B4C; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-register-login__button--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-register-login__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-register-login__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C; /* Dark blue text on gold background */
  transform: translateY(-3px);
}

.page-register-login__hero-image {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  width: 300px; /* Example size */
  height: auto;
  opacity: 0.15;
  z-index: 0;
}

/* Why Choose Section */
.page-register-login__why-choose {
  background-color: #f8f9fa;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-register-login__feature-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-register-login__feature-list li {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #FFD700;
}

.page-register-login__feature-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-register-login__feature-list li strong {
  color: #1A2B4C;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-register-login__icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  vertical-align: middle;
  background-color: #FFD700;
  border-radius: 50%;
  /* Placeholder for actual icon styling */
}

/* Registration Guide Section */
.page-register-login__registration-guide {
  background-color: #eef2f6;
}

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

.page-register-login__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  padding-top: 70px; /* Space for step number */
}

.page-register-login__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  line-height: 1;
}

.page-register-login__step-item h3 {
  color: #1A2B4C;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-register-login__step-item p {
  color: #334768;
  font-size: 1em;
}

.page-register-login__cta-center {
  margin-top: 50px;
}

/* Login Guide Section */
.page-register-login__login-guide {
  background-color: #f8f9fa;
}

.page-register-login__list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
  text-align: left;
}

.page-register-login__list li {
  background-color: #ffffff;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #1A2B4C; /* Dark blue accent */
  color: #334768;
  font-size: 1.1em;
}

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

.page-register-login__text-info {
  font-style: italic;
  color: #5f6b82;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* App Download Section */
.page-register-login__app-download {
  background-color: #1A2B4C; /* Dark blue background */
  color: #ffffff;
}

.page-register-login__app-download .page-register-login__section-title {
  color: #FFD700; /* Gold title on dark background */
}

.page-register-login__app-download .page-register-login__section-description {
  color: #e0e6ed;
}

.page-register-login__app-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.page-register-login__app-feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-register-login__app-feature-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-register-login__app-feature-item p {
  color: #e0e6ed;
}

.page-register-login__download-options {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-register-login__button--download {
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 18px 35px;
  font-size: 1.2em;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-register-login__button--download:hover {
  background-color: #e6c200;
}

/* Exclusive Offers Section */
.page-register-login__exclusive-offers {
  background-color: #eef2f6;
}

.page-register-login__offer-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 900px;
  text-align: left;
}

.page-register-login__offer-list li {
  background-color: #ffffff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border-left: 5px solid #FFD700;
  color: #334768;
}

.page-register-login__offer-list li strong {
  color: #1A2B4C;
  font-size: 1.15em;
}

/* Security & Support Section */
.page-register-login__security-support {
  background-color: #f8f9fa;
}

.page-register-login__security-tips {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
  text-align: left;
}

.page-register-login__security-tips li {
  background-color: #ffffff;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #1A2B4C;
  color: #334768;
  font-size: 1.1em;
}

.page-register-login__security-tips li strong {
  color: #1A2B4C;
}

/* Related Articles Section */
.page-register-login__related-articles {
  background-color: #eef2f6;
}

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

.page-register-login__article-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-register-login__article-item h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-register-login__article-item h3 a {
  color: #1A2B4C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-register-login__article-item h3 a:hover {
  color: #FFD700;
}

.page-register-login__article-item p {
  color: #5f6b82;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-register-login__button--link {
  background-color: #1A2B4C;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
  align-self: flex-start;
}

.page-register-login__button--link:hover {
  background-color: #334768;
  color: #FFD700;
}

/* General Image Styles */
.page-register-login__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-register-login__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

  .page-register-login__hero-image {
    position: static;
    width: 100%;
    margin-top: 40px;
    opacity: 0.8;
  }

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

  .page-register-login__button {
    width: 80%;
    max-width: 300px;
  }

  .page-register-login__feature-list,
  .page-register-login__steps-grid,
  .page-register-login__article-list {
    grid-template-columns: 1fr;
  }

  .page-register-login__app-features {
    flex-direction: column;
    align-items: center;
  }

  .page-register-login__app-feature-item {
    width: 90%;
  }
}

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

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

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

  .page-register-login__section-description,
  .page-register-login__list li,
  .page-register-login__security-tips li {
    font-size: 0.95em;
  }

  .page-register-login__button--download {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}

@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__download-options {
    flex-direction: column;
    align-items: center;
  }
}