body {
  background-color: #faf9f7;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="1"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.03"/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 0;
}

.login-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 0 1rem;
}

.login-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #2c3e50;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.login-brand i {
  color: #c0392b;
  margin-right: 8px;
}

.login-brand:hover {
  color: #2c3e50;
}

.login-card {
  background: #ffffff;
  border: 1px solid #e0dcd5;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.login-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #2c3e50;
}

.login-card label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #34495e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-card .form-control {
  border: 1px solid #e0dcd5;
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-family: 'Source Serif Pro', serif;
  font-size: 1rem;
  color: #1a1a1a;
  background: #faf9f7;
}

.login-card .form-control:focus {
  border-color: #2c3e50;
  box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

.login-card .form-control::placeholder {
  color: #bdc3c7;
}

.btn-login {
  background: #2c3e50;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn-login:hover {
  background: #c0392b;
  color: #ffffff;
}

.login-link {
  color: #c0392b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.login-link:hover {
  color: #2c3e50;
}

.login-divider {
  border-top: 2px solid #c0392b;
  width: 40px;
  margin: 0.75rem auto 1.5rem;
}

.login-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #7f8c8d;
  border-left: 2px solid #c0392b;
  padding-left: 1rem;
}

@media (max-width: 480px) {
  .login-card { padding: 1.5rem; }
  .login-brand { font-size: 1.3rem; }
}
