.login-container {
  display: flex;
  min-height: 100vh;
  width: 100vw;
  background-color: var(--bg-main);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px -5px rgba(44, 62, 45, 0.1), 0 10px 10px -5px rgba(44, 62, 45, 0.04);
  width: 100%;
  max-width: 420px;
  padding: 40px;
  border: 1px solid var(--border-color);
  animation: loginSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes loginSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

.login-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  background: white;
  border: 2px solid var(--primary-light);
}

.login-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bg-sidebar);
}

.login-header p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 6px;
}

.login-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 0.95rem;
  margin-top: 10px;
}
