/* style/login.css */
.page-login {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

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

.page-login__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  overflow: hidden;
  box-sizing: border-box;
}

.page-login__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-login__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.page-login__hero-title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-login__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-login__login-form-wrapper {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  margin: 0 auto 30px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.page-login__form-group {
  margin-bottom: 20px;
  text-align: left;
}

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #26A9E0;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.page-login__btn-login {
  width: 100%;
  padding: 15px 20px;
  background-color: #EA7C07; /* Login button color */
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.page-login__btn-login:hover {
  background-color: #d16b06;
}

.page-login__form-links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.page-login__link {
  color: #26A9E0;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.page-login__link:hover {
  color: #1e87b7;
  text-decoration: underline;
}

.page-login__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-login__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Video Section */
.page-login__video-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
  text-align: center;
}

.page-login__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-login__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

/* Why Login Section */
.page-login__why-login-section {
  padding: 80px 20px;
  background-color: #1a1a1a; /* Darker background for contrast with body */
  color: #ffffff;
}

.page-login__why-login-section .page-login__section-title {
  color: #FFFFFF;
}

.page-login__why-login-section .page-login__section-description {
  color: #f0f0f0;
}

.page-login__grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-login__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-login__feature-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-login__feature-item:hover {
  transform: translateY(-5px);
  background: rgba(38, 169, 224, 0.2);
}

.page-login__feature-heading {
  color: #26A9E0;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-login__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-login__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Login Guide Section */
.page-login__guide-section {
  padding: 80px 20px;
  background-color: #ffffff; /* Light background for contrast */
  color: #333333;
}

.page-login__guide-section .page-login__section-title,
.page-login__guide-section .page-login__sub-section-title {
  color: #000000;
}

.page-login__guide-section .page-login__section-description {
  color: #555555;
}

.page-login__guide-list {
  list-style: decimal;
  padding-left: 25px;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-login__guide-item {
  margin-bottom: 25px;
}

.page-login__guide-step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-login__guide-step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

.page-login__sub-section-title {
  font-size: 2em;
  color: #000000;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-login__troubleshooting-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-login__troubleshooting-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-login__troubleshooting-heading {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-login__troubleshooting-text {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

/* Security Section */
.page-login__security-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-login__security-section .page-login__section-title {
  color: #FFFFFF;
}

.page-login__security-section .page-login__section-description {
  color: #f0f0f0;
}

.page-login__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-login__security-item {
  background: rgba(38, 169, 224, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 4px solid #26A9E0;
}

.page-login__security-heading {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-login__security-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Benefits Section */
.page-login__benefits-section {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-login__benefits-section .page-login__section-title {
  color: #000000;
}

.page-login__benefits-section .page-login__section-description {
  color: #555555;
}

.page-login__exclusive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-login__exclusive-item {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-login__exclusive-heading {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-login__exclusive-text {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

/* FAQ Section */
.page-login__faq-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-login__faq-section .page-login__section-title {
  color: #FFFFFF;
}

.page-login__faq-section .page-login__section-description {
  color: #f0f0f0;
}

.page-login__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-login__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: rgba(38, 169, 224, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-login__faq-question:hover {
  background: rgba(38, 169, 224, 0.25);
}

.page-login__faq-heading {
  font-size: 1.2em;
  color: #FFFFFF;
  margin: 0;
}