/* === LOGIN & REGISTER PAGE STYLES === */

/* * 1. Main Page Layout
 * Uses flexbox to perfectly center the login card vertically and horizontally.
 */
.auth-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  /* A subtle gradient background */
  background: linear-gradient(135deg, var(--body-bg) 0%, #e9ecef 100%);
}

.login-container {
  max-width: 450px; /* A bit wider for a modern feel */
  width: 100%;
  padding: 1rem;
}

.login-container .card {
  border-radius: 0.75rem; /* Softer, rounded corners */
}

/* * 2. Logo Styling
 */
.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* The icon */
.login-logo i {
  font-size: 3rem; /* Big icon */
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* The "Sales Tracker" text */
.login-logo h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

/* * 3. Link Styling
 */
.register-link a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease-in-out;
}

.register-link a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
