body {
  margin: 0;
  font-family: Arial;
  background: #0d0d0d;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.login-box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  width: 350px;
  border: 1px solid #b38b2e66;
  text-align: center;
}

.logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #b38b2eaa;
  margin-bottom: 20px;
}

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

input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 6px;
  border: none;
  background: #111;
  color: white;
  box-sizing: border-box;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.password-wrapper input {
  padding-right: 45px;
  margin-top: 0;
}

.toggle-password {
  position: absolute;
  right: 8px;
  background: transparent;
  border: none;
  color: #b38b2e;
  cursor: pointer;
  padding: 8px;
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 4px;
  transition: background 0.2s;
}

.toggle-password:hover {
  background: rgba(179, 139, 46, 0.1);
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background: #b38b2e;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #e4b847;
}

#errorMsg {
  margin-top: 15px;
  color: #ff5555;
  font-size: 14px;
}
