body {
  margin: 0;
  font-family: "Trebuchet MS", sans-serif;
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background-color: whitesmoke; /* Warna emas */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

h2,
h3 {
  color: #007b55; /* Hijau gelap */
  margin-bottom: 20px;
  font-family: "Courier New", Courier, monospace;
}

a,
h4 {
  text-decoration: none;
  color: #005d40;
  margin-top: 50px;
}

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

label {
  display: block;
  color: #007b55; /* Hijau gelap */
  font-weight: bold;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #007b55; /* Hijau gelap */
  border-radius: 5px;
  box-sizing: border-box;
  outline: none;
}

.password-wrapper {
  position: relative;
}

#password {
  padding-right: 40px; /* Ruang untuk icon mata */
}

#togglePassword {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #007b55; /* Hijau gelap */
  font-size: 18px;
}

.login-btn {
  background-color: #007b55; /* Hijau gelap */
  color: #ffd700; /* Emas */
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: bold;
}

.login-btn:hover {
  background-color: #005d40; /* Hijau yang lebih gelap */
  color: #ffcfb3;
}

.logo {
  width: 250px; /* Ukuran logo */
  height: 200px;
  margin: 0 auto 20px; /* Memberi jarak dengan elemen di bawah */
  display: block; /* Memastikan logo berada di tengah */
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px; /* Beri ruang untuk ikon mata */
}

.password-wrapper i {
  position: absolute;
  right: 10px;
  cursor: pointer;
  color: #555;
}

#eye-icon {
  font-size: 18px;
  margin-right: 10px;
  color: #005d40;
}

/* Styling for the error message */
#error-message {
  width: 95%;
  height: auto;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 16px;
}
