.page-login {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A2E; /* Main dark background */
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

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

.page-login__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a1f4b 100%); /* Dark gradient for hero */
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-login__hero-content {
  z-index: 10;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-login__main-title {
  font-size: 3.5em;
  color: #E94560; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-login__hero-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-login__login-form-container {
  background-color: rgba(26, 26, 46, 0.85); /* Slightly transparent dark background for form */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border: 1px solid #E94560;
}

.page-login__login-form .page-login__form-group {
  margin-bottom: 25px;
  text-align: left;
}

.page-login__login-form .page-login__form-label {
  display: block;
  margin-bottom: 10px;
  color: #E0E0E0;
  font-weight: bold;
  font-size: 1.1em;
}

.page-login__login-form .page-login__form-input {
  width: calc(100% - 20px);
  padding: 15px 10px;
  border: 1px solid #5F5F6D; /* Subtle border */
  border-radius: 8px;
  background-color: #2A2A40; /* Slightly lighter dark input background */
  color: #E0E0E0;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-login__login-form .page-login__form-input::placeholder {
  color: #999;
}

.page-login__login-form .page-login__form-input:focus {
  border-color: #E94560;
  box-shadow: 0 0 8px rgba(233, 69, 96, 0.5);
  outline: none;
}

.page-login__form-options {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 25px;
}

.page-login__forgot-password {
  color: #E94560;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.page-login__forgot-password:hover {
  color: #ff7f99;
  text-decoration: underline;
}

.page-login__btn {
  display: block;
  width: 100%;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.page-login__btn--primary {
  background-color: #E94560;
  color: #1A1A2E;
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.page-login__btn--primary:hover {
  background-color: #ff7f99;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
}

.page-login__no-account-text {
  margin-top: 25px;
  font-size: 1em;
  color: #C0C0C0;
}

.page-login__btn-link {
  color: #E94560;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-login__btn-link:hover {
  color: #ff7f99;
  text-decoration: underline;
}

.page-login__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-login__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: blur(5px);
}

/* General Section Styling */
.page-login__benefits-section, .page-login__guide-section, .page-login__cta-section, .page-login__app-download-section, .page-login__commitment-section, .page-login__faq-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page-login__benefits-section {
  background-color: #2A2A40;
}

.page-login__section-title {
  font-size: 2.8em;
  color: #E94560;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-login__section-intro {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

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

.page-login__benefit-item {
  background-color: #2A2A40;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A3A50;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-login__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E94560);
}

.page-login__benefit-title {
  font-size: 1.6em;
  color: #E94560;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-login__benefit-description {
  font-size: 1em;
  color: #B0B0B0;
}

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

.page-login__guide-list li {
  background-color: #2A2A40;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #E94560;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-login__guide-step-title {
  color: #E94560;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-login__guide-tip {
  text-align: center;
  font-style: italic;
  color: #999;
  margin-top: 30px;
  font-size: 1em;
}

.page-login__cta-section {
  background: linear-gradient(90deg, #1A1A2E, #E94560); /* Gradient for CTA */
  padding: 80px 0;
  text-align: center;
}

.page-login__cta-content {
  max-width: 800px;
}

.page-login__cta-description {
  font-size: 1.3em;
  color: #FFF;
  margin-bottom: 40px;
  font-weight: 300;
}

.page-login__btn--secondary {
  background-color: #1A1A2E;
  color: #E94560;
  border: 2px solid #E94560;
  padding: 18px 35px;
  font-size: 1.2em;
  max-width: 300px;
  margin: 0 auto;
}

.page-login__btn--secondary:hover {
  background-color: #E94560;
  color: #1A1A2E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-login__app-download-section {
  background-color: #2A2A40;
  padding: 80px 0;
}

.page-login__app-download-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-login__app-download-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-login__app-description {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-login__app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-login__btn--app-store, .page-login__btn--google-play {
  background-color: #E94560;
  color: #1A1A2E;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.page-login__btn--app-store:hover, .page-login__btn--google-play:hover {
  background-color: #ff7f99;
  transform: translateY(-2px);
}

.page-login__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-login__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-login__commitment-section {
  background-color: #1A1A2E;
  position: relative;
  overflow: hidden;
}

.page-login__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.page-login__commitment-item {
  background-color: rgba(42, 42, 64, 0.9); /* Slightly transparent dark background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #5F5F6D;
}

.page-login__commitment-title {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-login__commitment-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-login__commitment-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
  opacity: 0.05;
  z-index: 1;
  filter: grayscale(100%);
}

.page-login__faq-section {
  background-color: #2A2A40;
}

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

.page-login__faq-item {
  background-color: #1A1A2E;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #E94560;
}

.page-login__faq-question {
  font-size: 1.3em;
  color: #E94560;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-login__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-login__main-title {
    font-size: 3em;
  }
  .page-login__section-title {
    font-size: 2.2em;
  }
  .page-login__app-download-grid {
    flex-direction: column-reverse;
  }
  .page-login__app-download-text, .page-login__app-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-login__hero-section {
    padding: 60px 0;
  }
  .page-login__main-title {
    font-size: 2.5em;
  }
  .page-login__hero-description {
    font-size: 1em;
  }
  .page-login__login-form-container {
    padding: 30px;
  }
  .page-login__btn--primary, .page-login__btn--secondary, .page-login__btn--app-store, .page-login__btn--google-play {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__section-intro {
    font-size: 0.95em;
  }
  .page-login__benefits-grid, .page-login__commitment-grid, .page-login__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-login__app-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-login__main-title {
    font-size: 2em;
  }
  .page-login__hero-description {
    font-size: 0.9em;
  }
  .page-login__login-form-container {
    padding: 20px;
  }
  .page-login__form-input {
    padding: 12px 8px;
  }
  .page-login__btn--primary, .page-login__btn--secondary, .page-login__btn--app-store, .page-login__btn--google-play {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .page-login__benefit-title, .page-login__commitment-title, .page-login__faq-question {
    font-size: 1.4em;
  }
}