/* style/resources-latest-login-guide.css */

/* --- General Page Styling --- */
.page-resources-latest-login-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff; /* Default white body background */
}

.page-resources-latest-login-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-latest-login-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-latest-login-guide__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #26A9E0; /* Primary brand color */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-latest-login-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #EA7C07; /* Login color for emphasis */
  border-radius: 2px;
}

.page-resources-latest-login-guide__text-block {
  font-size: 17px;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

/* --- Hero Section --- */
.page-resources-latest-login-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light blue to white gradient */
  overflow: hidden; /* Prevent content overflow */
}

.page-resources-latest-login-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure content is above any background elements */
}

.page-resources-latest-login-guide__main-title {
  font-size: 44px;
  font-weight: 900;
  color: #26A9E0; /* Primary brand color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-login-guide__intro-text {
  font-size: 19px;
  margin-bottom: 30px;
  max-width: 900px;
  color: #333333;
}

.page-resources-latest-login-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-latest-login-guide__cta-button:hover {
  background: #d66f00; /* Darker login color on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-login-guide__hero-image {
  width: 100%;
  margin-top: 40px;
  max-width: 1000px; /* Limit hero image width */
}

.page-resources-latest-login-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Why Choose Us Section --- */
.page-resources-latest-login-guide__section--why-choose-us {
  background-color: #f8fcfd; /* Very light blue background */
}

.page-resources-latest-login-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-latest-login-guide__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #333333;
}

.page-resources-latest-login-guide__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-latest-login-guide__card img {
  width: 100%;
  height: auto;
  max-width: 300px; /* Example size for card images */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-latest-login-guide__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-latest-login-guide__card p {
  font-size: 16px;
  color: #555555;
}

/* --- Official Link Section --- */
.page-resources-latest-login-guide__section--official-link {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff; /* White text for dark background */
  padding: 80px 0;
}

.page-resources-latest-login-guide__section--official-link .page-resources-latest-login-guide__section-title {
  color: #ffffff;
}

.page-resources-latest-login-guide__section--official-link .page-resources-latest-login-guide__section-title::after {
  background-color: #ffffff;
}

.page-resources-latest-login-guide__section--official-link .page-resources-latest-login-guide__text-block {
  color: #f0f0f0;
}

.page-resources-latest-login-guide__btn-primary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-latest-login-guide__btn-primary:hover {
  background: #d66f00;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-login-guide__section--official-link img {
  width: 100%;
  height: auto;
  max-width: 700px; /* Max width for image in this section */
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* --- Login Guide Section --- */
.page-resources-latest-login-guide__section--login-guide {
  background-color: #ffffff;
}

.page-resources-latest-login-guide__steps-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-latest-login-guide__step-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #f0f8ff; /* Light blue background for steps */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  border: 1px solid #d0e8f2;
}

.page-resources-latest-login-guide__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-login-guide__step-title {
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-latest-login-guide__step-item p {
  font-size: 16px;
  color: #555555;
}

.page-resources-latest-login-guide__section--login-guide img {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-resources-latest-login-guide__text-block--note {
  font-size: 17px;
  color: #EA7C07; /* Login color for warning */
  font-weight: bold;
  margin-top: 30px;
}

/* --- Troubleshooting Section --- */
.page-resources-latest-login-guide__section--troubleshooting {
  background-color: #f8fcfd;
}

.page-resources-latest-login-guide__trouble-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-latest-login-guide__trouble-item {
  background: #ffffff;
  border-left: 5px solid #26A9E0;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  padding: 25px;
  color: #333333;
}

.page-resources-latest-login-guide__trouble-title {
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-latest-login-guide__trouble-item p {
  font-size: 16px;
  color: #555555;
}

.page-resources-latest-login-guide__section--troubleshooting img {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}