body {
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    /* Pastikan gambar menutupi seluruh layar */
    background-position: center;
    /* Fokus ke tengah gambar */
    background-repeat: no-repeat;
    /* Jangan ulangi gambar */
    background-attachment: fixed;
    /* Gambar tetap saat scroll */
    background-image: url("images/back1.webp");
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(48, 48, 47, 0.774);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.custom-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #007bff;
    border-top: 6px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.main-container {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 1300px;
    width: 100%;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    align-items: center;
    text-align: center;

}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: aliceblue;
}

.header img {
    width: 80px;
    margin-right: 20px;
}

.form-label {
    font-weight: 500;
    background-color: lightblue;
    width: 100%;
    border-radius: 10px;
    text-align: center;

}

.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: aliceblue;
}

.btn-lg {
    font-size: 16px;
    padding: 10px 20px;
}

input,
select {
    font-size: 15px !important;
}

.pilihan {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    font-family: sans-serif;
    color: aliceblue;
}

.pilihan h2 {
    margin-bottom: 10px;
}

.pilihan a {
    display: block;
    /* <== ini bikin link tampil ke bawah */
    margin-bottom: 8px;
    text-decoration: none;
    color: #333;
    padding: 8px;
    background-color: #e0e0e0;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.pilihan a:hover {
    background-color: #3403e2;
}

/* Ukuran layar 1080px ke bawah */
@media (max-width: 1080px) {
    .main-container {
        padding: 25px 30px;
    }

    .header img {
        width: 70px;
    }

    /* body {
        font-size: medium;
    } */
}

.loader-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#form_penumpang {
    display: none;
}

#pilih_jurusan {
    display: none;
}


label {
    font-weight: 500;
    background-color: rgb(64, 86, 94);
    width: 100%;
    border-radius: 10px;
    text-align: center;

}

.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: aliceblue;
}

.btn-lg {
    font-size: 16px;
    padding: 10px 20px;
}

input,
select {
    font-size: 15px !important;
}

.btn-kembali {
    display: flex;
    justify-content: flex-end;
    /* Geser ke kanan */
    padding: 10px;
}

.home_icon {
    margin-bottom: 10px;
}

.home_icon a {
    background-color: #007bff;
    color: aliceblue;
    padding: 5px;
    border-radius: 10px;
}