/* css/style.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: url('../images/gambar1.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* kotak login */
.login-box {
  background: rgba(255, 255, 255, 0.096); /* transparan */
  backdrop-filter: blur(10px); /* efek blur */
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  width: 350px;
  color: white;
  text-align: center;
}

/* input */
.login-box input {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
}

/* tombol */
.login-box button {
  width: 100%;
  padding: 12px;
  background: rgba(46, 44, 44, 0.726);
  color: rgb(0, 0, 0);
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.login-box button:hover {
  background: #ffffff;
}

/* link */
.login-box a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  font-size: 0.9em;
  display: block;
  margin-top: 20px;
}

.login-box a:hover {
  color: #ffffff;
}
