* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #121212;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form {
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.form h2 {
  margin-bottom: 25px;
  font-size: 28px;
  color: #ffffff;
}

.form input {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background-color: #2c2c2c;
  color: #ffffff;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.form input:focus {
  outline: none;
  background-color: #3a3a3a;
}

.form button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#submit {
  background: #007bff;
  color: #fff;
}

#submit:hover {
  background: #0056d2;
}

#forget {
  background: #444444;
  color: #fff;
}

#forget:hover {
  background: #5c5c5c;
}

.form p {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}

.form a {
  color: #00bfff;
  text-decoration: none;
}

.form a:hover {
  text-decoration: underline;
}
