/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 100vh;
  background-color: #0f0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.login-container {
  position: relative;
  z-index: 2;
}

.login-box {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.login-box h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

.login-box label {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

input::placeholder {
  color: #b9b7b7; /* Light gray */
  opacity: 1; /* Ensure full visibility */
}

.login-box input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 15px;
  outline: none;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: #fff;
  color: #111;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 18px;
}

.login-btn:hover {
  background: #e2e2e2;
}

/* Background Circles */
.background-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.background-circle.blue {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  top: -100px;
  left: -100px;
}

.background-circle.orange {
  width: 300px;
  height: 300px;
  background: #f97316;
  bottom: -100px;
  right: -100px;
}

.forgot-password {
  text-align: right;
  margin-top: 5px;
  margin-bottom: 10px;
}

.forgot-password a {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

#notification.success {
  background-color: #28a745; /* Green */
}

#notification.error {
  background-color: #dc3545; /* Red */
}
