body {
  margin: 0;
  padding: 0;
  background-color: #212121;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: #2c2c2c;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(4, 245, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #04f500;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px 40px 12px 35px;
  border: none;
  border-radius: 8px;
  background: #1e1e1e;
  color: #fff;
}

.input-group i.fa-user,
.input-group i.fa-lock {
  position: absolute;
  top: 12px;
  left: 10px;
  color: #04f500;
}

.toggle-password {
  position: absolute;
  top: 12px;
  right: 10px;
  cursor: pointer;
  color: #888;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.login-btn {
  background: #04f500;
  color: #000;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: #03da00;
}

.bottom-links {
  text-align: center;
  margin-top: 15px;
}

.bottom-links a {
  color: #04f500;
  text-decoration: none;
  font-size: 14px;
}

.error-box {
  background-color: #b50000;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
}
.input-group input {
  width: 100%;
  padding: 12px 45px 12px 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #1e1e1e;
  color: #fff;
  outline: none;
  box-sizing: border-box;
  font-size: 15px;
  transition: 0.2s ease;
}

.input-group input:focus {
  border: 1px solid #04f500;
  box-shadow: 0 0 6px #04f50080;
}
/* تحسين صندوق الإدخال */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input[type="email"] {
  width: 100%;
  padding: 12px 45px 12px 38px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #1e1e1e;
  color: #fff;
  outline: none;
  font-size: 15px;
  box-sizing: border-box;
  transition: 0.3s ease;
}

.input-group input:focus {
  border: 1px solid #04f500;
  box-shadow: 0 0 8px #04f50088;
}

.input-group i.fa-envelope {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #04f500;
  font-size: 16px;
}

/* زر الإرسال */
.login-btn {
  background: #04f500;
  color: #000;
  font-weight: bold;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.login-btn:hover {
  background: #03d000;
}

/* تحسين رسالة التنبيه */
p {
  text-align: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.login-form h2 {
  color: #04f500;
  text-align: center;
  margin-bottom: 25px;
  font-size: 22px;
}
