/* style/resources-common-login-issues.css */
.page-resources-common-login-issues {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background (var(--secondary-color) is white) */
  background-color: var(--secondary-color);
  line-height: 1.6;
}

.page-resources-common-login-issues__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);
  background: linear-gradient(135deg, #26A9E0, #FFFFFF);
  color: #333333;
  overflow: hidden;
}

.page-resources-common-login-issues__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap-reverse;
}

.page-resources-common-login-issues__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
  z-index: 2;
}

.page-resources-common-login-issues__hero-content h1 {
  font-size: 48px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-common-login-issues__hero-content p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
}

.page-resources-common-login-issues__hero-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-resources-common-login-issues__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}