.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-header);
}

.login-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.login-logo {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8px;
}

.login-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.login-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.login-error {
  color: var(--color-danger);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 12px;
  min-height: 20px;
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: var(--gradient-header);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: var(--transition);
}

.btn-login:hover { opacity: 0.9; }