body {
    margin: 0;
    padding: 0;
    background-color: #e8f0f6;
}
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* pastikan di bawah semua konten */
    pointer-events: none; /* biar partikel nggak menghalangi klik di elemen lain */
}

/* Navbar */
.navbar {
    background-color: #213448;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 20px;
    color: white;
}

.d-flex {
    display: flex;
    align-items: center;
}

/* Form inputan */
.form-control {
    border: 1px solid #888 !important;
    background-color: #fefefe !important;
    padding: 10px !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2) !important;
    outline: none;
}

/* Logo */
.logo {
    height: 50px;
    display: block;
    padding-right: 10px;
    float: left;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    line-height: 1.2;
}

.logo-name {
    font-size: 20px;
    font-weight: bold;
}

.logo-tagline {
    font-size: 14px;
    color: #cccccc;
}

/* Menu Navbar */
.btn-dashboard {
    background-color: #f1f1f1;
    text-decoration: none;
    color: #547792;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-dashboard:hover {
    background-color: #eeeeee;
    transform: scale(1.05);
}

main {
  padding-top: 90px;
}

/* Footer */
.footer {
    background-color: #547792;
    color: #f1f1f1;
    text-align: center;
    width: 100%;
    padding: 5px;
    font-size: 0.9rem;
}

.min-vh-75 {
    min-height: 70vh;
}

form a {
    color: #0d6efd;
    text-decoration: none;
}

form a:hover {
    text-decoration: underline;
}

/* Responsif */
@media (max-width: 767px) {
    .col-lg-10 {
        max-width: 90%;
    }

    .logo-text-group {
        display: none;
    }

}

@media (min-width: 1200px) {
    .col-xl-8 {
        max-width: 800px;
    }
}