* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color:#f4f6f9;
  font-family:arial;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
img{
  width: 120px;
  display: block;
  margin: auto;
}
.login-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #999;
}

.input-group input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  color: #666;
}

.forgot {
  text-align: right;
  margin-bottom: 20px;
}

.forgot a {
  color: #3b82f6;
  font-size: 14px;
  text-decoration: none;
}

button {
  width: 100%;
  padding: 10px;
  background: #246122;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #10380f;
}