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

/* Base styles for the page content */
.page-resources-latest-login-guide {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background #FFFFFF */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-resources-latest-login-guide__section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-resources-latest-login-guide__section:nth-of-type(even) {
  background-color: #f8f8f8; /* Slightly different background for alternating sections */
}

.page-resources-latest-login-guide__section-title {
  font-size: 36px;
  color: #017439; /* Primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-latest-login-guide__sub-title {
  font-size: 24px;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-latest-login-guide__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-latest-login-guide__highlight {
  font-weight: bold;
  color: #017439; /* Highlight important keywords */
}

.page-resources-latest-login-guide__link {
  color: #017439;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-resources-latest-login-guide__link:hover {
  color: #005f2f;
  text-decoration: underline;
}

/* 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: 80px 20px;
  background-color: #f0f0f0; /* Fallback background */
  overflow: hidden;
}

.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;
  width: 100%;
  z-index: 1;
}

.page-resources-latest-login-guide__hero-image-main {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-login-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-resources-latest-login-guide__hero-title {
  font-size: 48px;
  color: #017439; /* Primary color for H1 */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-resources-latest-login-guide__hero-description {
  font-size: 20px;
  color: #333333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-latest-login-guide__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-latest-login-guide__cta-button {
  display: inline-block;
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 19px;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 220px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-login-guide__cta-button--register {
  background: #C30808; /* Custom color for register */
  color: #FFFF00; /* Custom font color for register */
  border: 2px solid #C30808;
}

.page-resources-latest-login-guide__cta-button--register:hover {
  background: #a30606;
  border-color: #a30606;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-login-guide__cta-button--login {
  background: #C30808; /* Custom color for login */
  color: #FFFF00; /* Custom font color for login */
  border: 2px solid #C30808;
}

.page-resources-latest-login-guide__cta-button--login:hover {
  background: #a30606;
  border-color: #a30606;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Content Row Layout */
.page-resources-latest-login-guide__content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-latest-login-guide__content-row--reverse {
  flex-direction: row-reverse;
}

.page-resources-latest-login-guide__content-text {
  flex: 1;
  min-width: 300px; /* Ensure text block doesn't shrink too much */
}

.page-resources-latest-login-guide__content-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px; /* Ensure image block doesn't shrink too much */
}