/* Login Page Specific Styles */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.login-container {
  max-width: 450px;
  width: 100%;
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.login-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-primary);
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
}

.login-footer a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
}

.login-footer a:hover {
  text-decoration: underline;
}