body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #fcfcfc;
  font-family: "Playfair Display", serif;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #fdfcf0 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}
.login-container::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  pointer-events: none;
}
.login-container h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-bottom: 30px;
  color: #1a1a1a;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
.login-container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #d4af37;
}
.login-container input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}
.login-container input:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}
.login-container button {
  width: 100%;
  padding: 15px;
  background-color: #1a1a1a;
  color: #d4af37;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.login-container button:hover {
  background-color: #333;
  color: #ffffff;
}/*# sourceMappingURL=login.css.map */