body {
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login img {
  max-width: 300px;
  margin-bottom: 20px;
}

.login h1 {
  color: #2e7d32;
  font-size: 28px;
  margin-top: 10px;
  letter-spacing: 1px;
}

.login p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.inputBox {
  background-color: #f8f8f8;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.inputBox label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

.inputBox input[type="text"],
.inputBox input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.inputBox input[type="submit"] {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.inputBox input[type="submit"]:hover {
  background-color: #388e3c;
}

.inputBox a {
  margin-left: 10px;
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

.inputBox a:hover {
  text-decoration: underline;
}

.notif {
  margin: 0 auto 18px auto;
  max-width: 420px;
  background: #e74a3b;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 18px;
  text-align: center;
  font-size: 1.07em;
  box-shadow: 0 3px 14px rgba(61, 190, 70, 0.09);
  letter-spacing: 0.5px;
}

.show-password-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: -7px 0 15px 0;
  padding-left: 0;
  box-sizing: border-box;
}

.show-password-row input[type="checkbox"] {
  margin-right: 8px;
  margin-left: 2px;
  width: 16px;
  height: 16px;
  accent-color: #4caf50;
}

.show-password-row label {
  font-weight: normal;
  font-size: 14px;
  color: #333;
  margin: 0;
  cursor: pointer;
  padding: 0;
}

.inputBox {
  background-color: #f8f8f8;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left; /* was center */
}
