/* Background dengan gambar + animasi */
.login-page {
  background: url('../../../images/bg-travel.jpg') no-repeat center center fixed;
  background-size: cover;
  animation: bgMove 15s linear infinite alternate;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

/* Efek gerakan background */
@keyframes bgMove {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}

/* Card login dibuat semi-transparan */
.login-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem 2rem 1.5rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}


/* teks & input agar tetap kontras */
.login-logo h2 {
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1rem;
  margin-top: -1.5rem;
}

.login-logo h3,
.login-logo p,
.login-box-msg {
  color: black;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  font-size: 16px;
}

.form-control {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
}

.btn-login {
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.5rem;
  padding: 0.6rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-primary {
  background-color: #007bff;
  border: none;
}
.btn-primary:hover {
  background-color: #0056b3;
}
.btn-outline-success {
  border: 1px solid #20c997;
  color: #20c997;
}
.btn-outline-success:hover {
  background-color: #20c997;
  color: white;
}
