body {
  font-family: 'Cutive Mono';
  background: #6E412A;
  min-height: 95vh;
}

div.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 95vh;
}

.login-box {
  background: #f4f1ea;
  padding: 45px;
  border-radius: 31px;
  width: 500px;
  height: 300px;
  box-shadow: 5px 7px 10px 3px rgba(0, 0, 0, 0.6);
}

div.loginContainer input::placeholder {
  color: #31160B;
  font-weight: bolder;
  opacity: 70%;
}

div.loginContainer input {
  font-family: 'DM Sans';
  width: 95%;
  height: 60px;
  margin-top: 10px;
  border-radius: 15px;
  box-sizing: border-box;
  padding-left: 15px;
  font-size: 15px;
  transform: scaleX(1.05);
  transform-origin: left;
  box-shadow: 6px 9px 10px 3px rgba(0, 0, 0, 0.6);
  color: #31160B;
  font-weight: bolder;
  opacity: 70%;
}

/* 🔹 Login Button */
div.loginContainer button[type="submit"] {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 15px;
  background-color: #e4dbca;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  margin-left: 0;
  color: #31160B;
  box-shadow: 6px 9px 9px 3px rgba(0, 0, 0, 0.6);
  transition: background 0.2s ease;
  border: none;
}

/* 🔹 Remove Bootstrap blue glow */
div.loginContainer button[type="submit"]:focus,
div.loginContainer button[type="submit"]:active {
  outline: none !important;
  box-shadow: 6px 9px 9px 3px rgba(0, 0, 0, 0.6) !important;
}

div.loginContainer button[type="submit"]:hover {
  background-color: #d3c7b3;
}

/* 🔹 Toggle Password Button */
#togglePassword {
  border: none;
  background: #e4dbca;
  border-radius: 0 15px 15px 0;
  box-shadow: 4px 7px 15px 1px rgba(0, 0, 0, 0.6);
  width: 60px;
  height: 60px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔹 Remove blue outline for toggle button too */
#togglePassword:focus,
#togglePassword:active {
  outline: none !important;
  box-shadow: 4px 7px 15px 1px rgba(0, 0, 0, 0.6) !important;
}

#togglePassword i {
  font-size: 1.2rem;
  color: #31160B;
}
  
.logo-img {
  right: 1px;
  width: 500px;
  margin-right: 60px;
  margin-bottom: 1px;
  margin-left: 5px;
}