.page-login {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-login__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #2F6BFF; /* Main Color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}

.page-login__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.page-login__hero-content {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.95); /* Card BG with slight transparency */
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 100%;
  color: #1F2D3D;
}

.page-login__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  /* No fixed large font-size, rely on clamp for responsiveness if needed */
}

.page-login__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

.page-login__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-login__form-group {
  text-align: left;
}

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  font-size: 1em;
  color: #1F2D3D;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease;
}

.page-login__form-input::placeholder {
  color: #777;
}

.page-login__form-input:focus {
  border-color: #6FA3FF; /* Auxiliary Color */
  outline: none;
}

.page-login__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.page-login__submit-button {
  padding: 14px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-login__submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-login__register-link,
.page-login__forgot-password-link {
  color: #2F6BFF; /* Main Color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-login__register-link:hover,
.page-login__forgot-password-link:hover {
  color: #2F6BFF; /* Main Color, ensuring contrast */
  text-decoration: underline;
}

.page-login__features-section,
.page-login__faq-section {
  padding: 60px 0;
  text-align: center;
}

.page-login__section-title {
  font-size: 2.2em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-login__feature-card {
  background-color: #FFFFFF; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-login__feature-icon {
  width: 100%; /* Ensure images are not small icons */
  height: auto;
  max-width: 250px; /* Example, adjust as needed */
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-login__feature-title {
  font-size: 1.5em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-login__feature-text {
  color: #1F2D3D; /* Text Main */
}

.page-login__faq-list {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}

.page-login__faq-item {
  background-color: #FFFFFF; /* Card BG */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-login__faq-question {
  font-size: 1.3em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-login__faq-answer {
  color: #1F2D3D; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-login__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .page-login__hero-content {
    padding: 15px;
    max-width: 90%;
  }

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

  .page-login__description {
    font-size: 1em;
  }

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

  .page-login__features-grid {
    grid-template-columns: 1fr;
  }

  .page-login__feature-icon {
    max-width: 100%; /* Ensure images are responsive within their cards */
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-login__submit-button {
    font-size: 1em;
  }

  /* Ensure content area images do not cause overflow */
  .page-login img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-login__main-title {
    font-size: 1.5em;
  }

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

  .page-login__form-input {
    padding: 10px;
  }

  .page-login__submit-button {
    padding: 12px 20px;
  }
}