body, html {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.login-box .header {
  text-align: center;
  color: #fff;
  margin-bottom: 1.5rem;
}

.login-box .header img {
  width: 50px;
  margin-bottom: 10px;
}

.login-box h1 {
  font-size: 1.8rem;
  margin: 0;
}

.login-box p {
  font-size: 0.95rem;
  color: #ddd;
}

form {
  display: flex;
  flex-direction: column;
}

.input-group {
  margin-bottom: 1rem;
}

.input-group label {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

.input-group input {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  background: #f0f0f0;
  font-size: 1rem;
}

.login-btn {
  background-color: #00aaff;
  border: none;
  color: white;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background-color: #0077cc;
}

.forgot {
  color: #ccc;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  cursor: pointer;
}

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