:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07; /* Login specific color */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #ffffff;
  --bg-dark: #1a1a1a; /* Example dark background for contrast */
  --border-color: #e0e0e0;
}

/* Base styles for the login page */
.page-login {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark); /* Default text color for light body background */
  background-color: var(--bg-light); /* Default body background is white */
}

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

.page-login__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

/* Hero Section */
.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #f0f8ff; /* Light background for the hero section */
}

.page-login__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px; /* Space between image and content */
}

.page-login__hero-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-login__hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-login__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-login__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-login__hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color-dark);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-login__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Login specific color */
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-login__cta-button:hover {
  background: #c76706; /* Manually darkened */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Form Section */
.page-login__form-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.page-login__form-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.page-login__form-illustration {
  flex: 1;
  min-width: 300px;
}

.page-login__form-illustration img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-login__login-form {
  flex: 1;
  min-width: 300px;
}

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

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color-dark);
  font-size: 16px;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-login__form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(38, 169, 224, 0.2);
  outline: none;
}

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

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

.page-login__checkbox {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.page-login__checkbox-label {
  color: var(--text-color-dark);
  cursor: pointer;
}

.page-login__forgot-password {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

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

.page-login__btn-primary {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: var(--text-color-light);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

.page-login__btn-primary:hover {
  background: #208cb9; /* Manually darkened */
  transform: translateY(-2px);
}

.page-login__no-account {
  text-align: center;
  margin-top: 25px;
  font-size: 15px;
  color: var(--text-color-dark);
}

.page-login__register-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* Security Section */
.page-login__dark-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 80px 0;
}

.page-login__dark-section .page-login__section-title {
  color: var(--text-color-light);
}

.page-login__security-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-login__security-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-login__security-image img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Max width for the security icon */
  display: block;
  margin: 0 auto;
}

.page-login__security-text {
  flex: 2;
  font-size: 17px;
  line-height: 1.7;
}

.page-login__security-text p {
  margin-bottom: 20px;
}