body {
  min-height: 100vh;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  
  background:
    linear-gradient(
      rgba(247, 251, 230, 0.35),
      rgba(247, 251, 230, 0.35)
    ),
    url("../images/krp.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  width: 350px;
  margin: 80px auto;
  padding: 25px;

  background: rgba(255, 255, 255, 0.15); /* transparan */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

  border: 1px solid rgba(255, 255, 255, 0.25);
}


h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #000; /* hitam */
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #000;
}

input {
  display: block;
  width: 100%;
}

.container {
  color: #000;
}



input:focus {
  outline: none;
  border-color: #a4be00;
  box-shadow: 0 0 0 2px rgba(199, 224, 0, 0.3);
}

button {
  width: 100%;
  padding: 10px;
  background-color: #c7e000; /* warna utama */
  color: #2f2f2f;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #a4be00;
}

p {
  text-align: center;
  font-size: 14px;
  color: #000;
}

a {
  position: relative;
  color: #1f3d0c;
  font-weight: 700;
  text-decoration: none;
}

a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #1f3d0c;
  transition: all 0.3s ease;
}

a:hover::after {
  left: 0;
  width: 100%;
}

a:hover {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}
