.page-login {
  color: #ffffff;
  background-color: #1a1a2e;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 0;
}

.page-login__hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
  box-sizing: border-box;
}

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

.page-login__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.3;
}

.page-login__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-login__main-title {
  font-size: 42px;
  color: #DAA520;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__main-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-login__form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-login__form-container {
  background: rgba(47, 79, 79, 0.8);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 450px;
  box-sizing: border-box;
}

.page-login__form-title {
  font-size: 28px;
  color: #DAA520;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

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

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  color: #f0f0f0;
  font-size: 15px;
  font-weight: 500;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #5a5a5a;
  border-radius: 5px;
  background-color: #2a2a2a;
  color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.page-login__form-input:focus {
  border-color: #DAA520;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.3);
  outline: none;
}

.page-login__form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.page-login__remember-me {
  display: flex;
  align-items: center;
}

.page-login__checkbox {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  accent-color: #DAA520;
}

.page-login__checkbox-label {
  color: #f0f0f0;
}

.page-login__forgot-password-link {
  color: #DAA520;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-login__btn-primary {
  width: 100%;
  padding: 15px;
  background-color: #DAA520;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  display: block;
  text-decoration: none;
  box-sizing: border-box;
}

.page-login__btn-primary:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
}

.page-login__register-prompt {
  text-align: center;
  margin-top: 25px;
  color: #f0f0f0;
  font-size: 15px;
}

.page-login__register-prompt p {
  margin: 0;
}

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

.page-login__register-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.page-login__form-illustration {
  width: 100%;
  max-width: 600px;
  flex-shrink: 0;
}

.page-login__form-illustration img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-login__benefits-section {
  padding: 80px 20px;
  background-color: rgba(47, 79, 79, 0.6);
  text-align: center;
}

.page-login__benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-login__benefits-title {
  font-size: 36px;
  color: #DAA520;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-login__benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.page-login__benefit-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-login__benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.page-login__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-login__benefit-heading {
  font-size: 22px;
  color: #DAA520;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-login__benefit-description {
  font-size: 15px;
  color: #f0f0f0;
  margin: 0;
}

.page-login__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #1a1a2e;
}

.page-login__cta-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(218, 165, 32, 0.15);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-login__cta-title {
  font-size: 38px;
  color: #DAA520;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-login__cta-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-login__btn-secondary {
  padding: 15px 30px;
  background-color: transparent;
  color: #DAA520;
  border: 2px solid #DAA520;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
}

.page-login__btn-secondary:hover {
  background-color: #DAA520;
  color: #1a1a2e;
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-login__form-section {
    flex-direction: column;
    gap: 40px;
  }

  .page-login__form-illustration {
    max-width: 100%;
  }

  .page-login__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-login__main-title {
    font-size: 36px;
  }

  .page-login__benefits-title {
    font-size: 32px;
  }
  .page-login__cta-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  /* All images must be responsive */
  .page-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  /* All containers containing images or text */
  .page-login__hero-banner,
  .page-login__form-section,
  .page-login__form-container,
  .page-login__benefits-section,
  .page-login__benefits-container,
  .page-login__benefit-card,
  .page-login__cta-section,
  .page-login__cta-container,
  .page-login__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-login__hero-banner {
    padding: 60px 15px;
    min-height: 300px;
  }

  .page-login__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-login__main-description {
    font-size: 16px;
  }

  .page-login__form-section {
    padding: 60px 15px;
    gap: 30px;
  }

  .page-login__form-container {
    padding: 30px;
  }

  .page-login__form-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .page-login__form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .page-login__benefits-section {
    padding: 60px 15px;
  }

  .page-login__benefits-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .page-login__benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-login__benefit-icon {
    width: 80px;
    height: 80px;
  }

  .page-login__benefit-heading {
    font-size: 20px;
  }

  .page-login__benefit-description {
    font-size: 14px;
  }

  .page-login__cta-section {
    padding: 60px 15px;
  }

  .page-login__cta-container {
    padding: 40px 20px;
  }

  .page-login__cta-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-login__cta-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* All buttons must be responsive */
  .page-login__btn-primary,
  .page-login__btn-secondary,
  .page-login a[class*="button"],
  .page-login a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}