/* Import FontAwesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");

/* Buat seluruh halaman agar selalu berada di tengah */
body {
  font-family: "Arial", sans-serif;
  background: #f4f7f6;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/* Container utama untuk form login */
.login-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Header */
.login-container h1 {
  color: #007bff;
  margin-bottom: 20px;
}

/* Input field */
.form-control {
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
}

/* Tombol Login */
.btn-login {
  width: 100%;
  background: #007bff;
  color: #ffffff;
  border-radius: 5px;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-login:hover {
  background: #0056b3;
}

/* Link navigasi */
.nav-links a {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  margin: 10px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .login-container {
    width: 90%;
  }
}
