body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1cb5e0, #000851);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  width: 350px;
}

.login-container h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}

input[type="text"], input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  width: 100%;
  padding: 0.75rem;
  background: #1cb5e0;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #1199cc;
}

.remember {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.remember input {
  margin-right: 0.5rem;
}
