/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  min-height: 100vh;

  background: 
    /* Gradasi overlay */ linear-gradient(
      to right,
      rgba(54, 128, 234, 0.6) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(54, 128, 234, 0.6) 100%
    ),
    url("img/background.jpg"); /* gambar background */

  background-size: cover; /* supaya penuh layar */
  background-position: center; /* fokus tengah */
  background-attachment: fixed; /* efek parallax */
  background-repeat: no-repeat;
  background-blend-mode: screen; /* blending gradien + gambar */
}

/* Kontainer login */
.login-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  padding: 40px;
  margin: 20px auto;
  transform: translate(-50%, -55%);
  background: rgba(0, 0, 0, 0.9);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

/* Judul */
.login-container h1 {
  text-align: center;
  color: #0c0480;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.login-container p {
  text-align: center;
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Label dan input */
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

input,
select {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-bottom: 1.25rem;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

input:focus,
select:focus {
  border-color: #110070;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
  outline: none;
}

/* Tombol */
button {
  width: 100%;
  padding: 0.75rem;
  background-color: #110070;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #110070;
}

/* Footer */
.login-footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #aaa;
  text-align: center;
}
