/* style/login.css */

/* Base styles for the login page content */
.page-login {
  background-color: #0A0A0A; /* From custom palette */
  color: #FFF6D6; /* From custom palette, for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* Ensure space above footer */
}

/* Hero Section */
.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0A0A0A;
}

.page-login__hero-image-container {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-login__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast */
}

.page-login__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 40px; /* Space between image and content */
  padding: 0 20px;
  box-sizing: border-box;
}

.page-login__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #FFD36B; /* Auxiliary color for highlight */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-login__description {
  font-size: 1.15rem;
  color: #FFF6D6;
  margin-bottom: 30px;
}

/* Login Form Wrapper */
.page-login__login-form-wrapper {
  background: #111111; /* Card BG from custom palette */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #3A2A12; /* Border from custom palette */
}

.page-login__login-form {
  display: flex;
  flex-direction: column;
}

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

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

.page-login__form-input {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #3A2A12;
  border-radius: 5px;
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

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

.page-login__form-input:focus {
  border-color: #FFD36B;
}

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

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

.page-login__checkbox {
  margin-right: 8px;
  accent-color: #F2C14E; /* Highlight color for checkbox */
}

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

.page-login__forgot-password {
  color: #F2C14E; /* Main color */
  text-decoration: none;
  transition: color 0.3s ease;
}

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