body {
  font-family: "Nunito", sans-serif;
  background: linear-gradient(to right, #4caf50, #8bc34a);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.login-container {
  width: 90%;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  backdrop-filter: blur(8px);
}
.logo {
  font-size: 80px; /* Sesuaikan ukuran */
  color: #ffd700; /* Warna emas */
}
h1,
h2 {
  color: white;
  margin-bottom: 15px;
}
.input-wrapper {
  position: relative;
  width: 85%;
  margin: 10px auto;
}
input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  outline: none;
  text-align: center;
}
.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
}
.btn {
  width: 85%;
  padding: 12px;
  background: #ff9800;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.btn:hover {
  background: #f57c00;
}
.small {
  color: white;
  font-size: 12px;
  margin-top: 12px;
}
