body {
  font-family: "Montserrat", sans-serif;
  /* background-color: #fdeaf2; */
  /* Light blue background */
  /* display: flex; */
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-form-body {
  border: 1px solid orangered;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35%;
}

.login-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  border-top: 4px solid #E28625;
  /* Blue top border */
}

h2 {
  text-align: center;
  color: #E28625;
  /* Blue color for heading */
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 20px;
  display: block !important;
}

.input-group label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #E28625;
  /* Blue border */
  border-radius: 4px;
  font-size: 16px;
}

.password-input-wrapper {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  margin-right: 8px;
}

.eye-icon.active {
  fill: #E28625;
  /* Active icon color */
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.remember-me {
  display: flex;
  align-items: center;
  margin-right: 18px;
}

.remember-me input {
  margin-right: 8px;
}

.forgot-password {
  font-size: 14px;
  color: #E28625;
  /* Blue link color */
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background-color: #E28625;
  /* Blue button */
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  margin-top: 10px;
}

.login-btn:hover {
  background-color: #ffc689;
}

.login-btn:active {
  background-color: #E28625;
}

/* Tooltip styles */
.tooltip-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  cursor: pointer;
  display: inline-block;
}

.tooltip-icon[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  animation: tooltip 0.3s forwards;
}

@keyframes tooltip {
  0% {
    opacity: 0;
    bottom: 110%;
  }

  100% {
    opacity: 1;
    bottom: 120%;
  }
}

.settings {
  width: 150px;
  justify-content: center;
}

.top-header {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}

.settings-1 {
  width: 30px;
  justify-content: center;
}
