* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Background setup */
body {
  background: url("bglogin.jpg") no-repeat center center fixed;
  background-size: cover;
  background-color: #000; /* fallback if image missing */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
}

/* Login Box */
.login-container {
  width: 380px;
  padding: 40px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  text-align: center;
  backdrop-filter: blur(8px);
}

/* Title */
h1 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 26px;
}

/* Text */
p {
  margin-bottom: 20px;
  color: #f1f1f1;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  text-align: left;
  font-weight: 500;
  color: #f5f5f5;
}

input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d4af37;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: 0.3s;
}

input:focus {
  outline: none;
  border-color: #ffdb58;
  background: rgba(255, 255, 255, 0.2);
}

/* Button */
button {
  background: #d4af37;
  color: black;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ffcc33;
  transform: scale(1.02);
}

/* Links */
a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Checkbox and label alignment */
.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f5f5f5;
}
