.auth-container {
  display: flex;
  min-height: 100vh;
  background-color: var(--bg-main);
}

/* Side Branding Panel (Right Side) */
.auth-sidebar {
  flex: 1;
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9)), 
              url('/images/hgv-dashboard-bg.jpg') center/cover;
  display: none; /* Hidden on mobile by default */
  flex-direction: column; /* Stacks the header and paragraph */
  justify-content: center;
  align-items: flex-start; /* Aligns text to the left of the panel */
  padding: 60px;
}

/* Text Content inside the sidebar */
.auth-sidebar h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.auth-sidebar p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  line-height: 1.6;
}

/* Fix: Show sidebar on large screens using min-width */
@media (min-width: 1024px) { 
  .auth-sidebar { display: flex; } 
}

/* Form Side */
.auth-form-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.auth-card h2 { margin-bottom: 0.5rem; font-size: 1.8rem; }
.auth-card p { color: var(--text-secondary); margin-bottom: 2rem; }

.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; color: var(--text-secondary); font-size: 0.9rem; }

.input-group input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-main);
  border: 1px solid #334155;
  border-radius: 8px;
  color: white;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input:focus { border-color: var(--accent-color); }

.btn-primary {
  width: 100%;
  padding: 12px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-primary:hover { opacity: 0.9; }

.auth-footer { margin-top: 1.5rem; text-align: center; font-size: 0.9rem; color: var(--text-secondary); }
.auth-footer a { color: var(--accent-color); text-decoration: none; }