body {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/images/login.png") no-repeat center center fixed;
  background-size: cover;
}

.wf_login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 1rem;
}

.wf_login > div {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1rem);
  padding: 3rem;
  border-radius: 0.2rem;
  box-shadow: 0 2.5rem 5rem -1.2rem rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 40rem;
  text-align: center;
  border-top: 0.4rem solid #c5a059;
  margin: 0 auto;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
}

.error {
  background: #fff5f5;
  color: #c53030;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  border: 0.1rem solid #feb2b2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

input {
  width: 100%;
  padding: 1rem;
  border: 0.1rem solid #e2e2e2;
  background: #fafafa;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

input:focus {
  border-color: #c5a059;
  background: #fff;
}

button {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #1a1a1a;
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

button:hover {
  background-color: #c5a059;
  color: #fff;
}

/* Subtle footer for that hotel vibe */
.login-container::after {
  content: "CONCIERGE ACCESS ONLY";
  display: block;
  margin-top: 2rem;
  font-size: 0.65rem;
  color: #999;
  letter-spacing: 0.3rem;
}
