body {
 background: url('mnt.jpg') no-repeat center center fixed;
 background-size: cover;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #eee;
  margin: 0;
}

.login-container {
  background: rgba(34, 34, 34, 0.8);
  padding: 30px 40px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 0 15px rgba(255, 59, 48, 0.7);
}

h2 {
  color: #ff3b30;
  text-align: center;
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 18px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #eee;
}

input::placeholder {
  color: #ccc;
}

input:focus {
  outline: 2px solid #ff3b30;
  background: rgba(255, 59, 48, 0.2);
  color: #fff;
}

button {
  width: 100%;
  padding: 12px 0;
  border: none;
  background: #ff3b30;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e02a1a;
}

.error {
  color: #ff5050;
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}
.login-container {
  position: relative;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);   /* transparency added here */
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 59, 48, 0.7);
  width: 320px;
}
