body {
  background: #0f0f0f;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.container {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 110px;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
  width: 320px;
  color: #fff;
}
.container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #00ff00;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input {
  width: 270px;
  padding: 12px 40px 12px 12px;
  border: none;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  font-size: 16px;
}
.form-group .toggle-pass {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #bbb;
}
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #00ff00;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}
.switch-link {
  text-align: center;
  margin-top: 15px;
}
.switch-link a {
  color: #00ff00;
  cursor: pointer;
  text-decoration: none;
}
.remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 15px;
}

.remember-me input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: #00ff00;
  transform: scale(1.1);
}

.remember-me label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

