/* style/login.css */

/* Base styles for the login page */
.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

/* Hero Section */
.page-login__hero-section {
  position: relative;
  padding: 120px 0 80px; /* Adjust padding-top to respect header offset */
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  background-color: #003366; /* Fallback if image fails */
}

.page-login__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-login__hero-section > .page-login__container {
  position: relative;
  z-index: 2;
}

.page-login__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-login__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-login__login-form-wrapper {
  background: rgba(0, 51, 102, 0.9); /* Main brand color with transparency */
  padding: 40px;
  border-radius: 10px;
  max-width: 450px;
  margin: 40px auto 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #FFCC00;
}

.page-login__form-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #FFCC00;
  text-align: center;
}

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

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

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #003366;
  border-radius: 5px;
  background-color: #0d2747; /* Slightly lighter dark blue */
  color: #ffffff;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.page-login__form-input:focus {
  border-color: #FFCC00;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.5);
}

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

.page-login__remember-me {
  display: flex;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
}

.page-login__checkbox {
  margin-right: 8px;
  accent-color: #FFCC00;
}

.page-login__forgot-password {
  color: #FFCC00;
  text-decoration: none;
}

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

.page-login__submit-button {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  margin-bottom: 20px;
}

.page-login__submit-button .page-login__btn-link {
  display: block;
  width: 100%;
  padding: 15px 25px;
  background-color: #FFCC00;
  color: #003366;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}