/* style/login.css */
.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Body background */
}

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

.page-login__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-login__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-login__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: -1;
}

.page-login__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-login__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFFF00; /* Custom color for main title for prominence */
  line-height: 1.2;
}

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

.page-login__login-form-wrapper {
  background: #FFFFFF; /* Custom background for form */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.page-login__form-title {
  color: #017439; /* Brand color for form title */
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-login__login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.page-login__form-label {
  display: block;
  margin-bottom: 5px;
  color: #333333;
  font-weight: bold;
}

.page-login__form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1em;
}

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

.page-login__btn-login {
  background-color: #C30808; /* Custom login button color */
  color: #FFFF00; /* Custom login button font color */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  text-align: center;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.page-login__btn-login:hover {
  background-color: #a00606;
}

.page-login__forgot-password {
  color: #017439; /* Brand color for link */
  text-decoration: none;
  font-size: 0.9em;
  text-align: center;
  display: block;
}

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

.page-login__register-prompt {
  margin-top: 20px;
  color: #333333;
  text-align: center;
}

.page-login__register-link {
  color: #017439; /* Brand color for link */
  text-decoration: none;
  font-weight: bold;
}

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