body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background: url("https://cdn.pixabay.com/photo/2021/10/07/00/48/boat-6686952_1280.jpg");
  background-size: cover;
  background-position: center;
}

.container {
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 5rem;
  background-color: #f4f4f4;
  max-width: 500px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.container img {
  width: 100px !important;
}

.login-box {
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px;
}

.btn-primary {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.error {
  color: red;
  margin-top: 10px;
}

#toggle-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #888;
  border: none; /* Remove any border */
  background: none; /* Remove any background */
  outline: none; /* Remove the outline when focused */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
}

#toggle-icon:focus {
  outline: none; /* Ensure no outline appears on focus */
}

#toggle-icon i {
  pointer-events: none; /* Prevent the icon itself from being clicked separately */
}

/*# sourceMappingURL=styles_login.css.map */
