:root {
  --page-login-primary-color: #26A9E0;
  --page-login-secondary-color: #FFFFFF;
  --page-login-login-button-color: #EA7C07;
  --page-login-black: #000000;
  --page-login-text-dark: #333333;
  --page-login-text-light: #ffffff;
  --page-login-border-light: #e0e0e0;
}

.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-login-text-dark);
  background-color: var(--page-login-secondary-color);
}

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

/* Hero Section */
.page-login__hero-section {
  position: relative;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--page-login-text-light);
  overflow: hidden;
  padding-top: 0;
}

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

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

.page-login__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-login__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-login__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-login__login-form-wrapper {
  background: var(--page-login-secondary-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: var(--page-login-text-dark);
  max-width: 400px;
  margin: 0 auto;
}

.page-login__form-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: var(--page-login-primary-color);
}

.page-login__form-description {
  margin-bottom: 20px;
  font-size: 0.95em;
}

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

.page-login__form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--page-login-border-light);
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.9em;
}

.page-login__forgot-password-link,
.page-login__register-link {
  color: var(--page-login-primary-color);
  text-decoration: none;
}

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

.page-login__submit-button {
  width: 100%;
  padding: 15px 20px;
  background-color: var(--page-login-login-button-color);
  color: var(--page-login-text-light);
  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__submit-button:hover {
  background-color: #EA6C00;
}

/* General Section Styles */
.page-login__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: var(--page-login-primary-color);
  line-height: 1.2;
}

.page-login__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

.page-login__light-bg {
  background-color: var(--page-login-secondary-color);
  color: var(--page-login-text-dark);
  padding: 60px 0;
}