body.page-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

body.page-login::after {
  content: '';
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 220, 232, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.login-container {
  width: 100%;
  max-width: 380px;
  padding: 2rem;
  animation: fadeUp 0.6s ease both;
  position: relative;
  z-index: 1;
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.login-logo em { font-style: italic; }

.login-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.form-group { margin-bottom: 1.2rem; }

.btn-login {
  width: 100%;
  padding: 0.85rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.btn-login:hover {
  background: #b8996e;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.2);
}

.flash-error {
  background: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.22);
  color: var(--danger);
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.decorative-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.decorative-line::before,
.decorative-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
