body {
    background-image: url("../images/patern.png");
    background-repeat: no-repeat;
    background-size: cover;
}

input:focus {
    border: 1px solid #eaa800 !important;
    outline: none !important;
    box-shadow: none !important;
}

select:focus {
    border: 1px solid #eaa800 !important;
    outline: none !important;
    box-shadow: none !important;
}

.body-loader {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0; /* Pastikan elemen ini menutupi seluruh viewport */
    left: 0; /* Pastikan elemen ini menutupi seluruh viewport */
    z-index: 9;
    display: flex; /* Menambahkan Flexbox */
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
}

.container-loader {
    width: 100px;
    height: 50px;
    background: #ffe39c;
    position: relative;
    z-index: 8;
    display: flex;
    border-radius: 8px;
}

.loader {
    width: 15px;
    margin: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
    0% {
        box-shadow: 20px 0 #000, -20px 0 #0002;
        background: #000;
    }
    33% {
        box-shadow: 20px 0 #000, -20px 0 #0002;
        background: #0002;
    }
    66% {
        box-shadow: 20px 0 #0002, -20px 0 #000;
        background: #0002;
    }
    100% {
        box-shadow: 20px 0 #0002, -20px 0 #000;
        background: #000;
    }
}

.text-jev-gold {
    color: #eaa800;
}

.border-jev-nav {
    border-bottom: 1px solid #ffefc5;
}

.btn-jev-login {
    background-color: #eaa800;
    color: white;
    border-radius: 3px;
}

.btn-jev-login:hover {
    background-color: white;
    border: 1px solid #eaa800;
    color: #eaa800;
}

.navbar {
    background-color: white;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(24, 20, 0, 0.8);
}

.navbar.scrolled #gas .nav-item .nav-link {
    color: white;
}

.offcanvas.scrolled {
    background-color: rgba(24, 20, 0, 1);
}

.scrolled .navbar-toggler {
    background-color: rgba(255, 255, 255, 0.8);
    outline: none;
    box-shadow: none;
}

.avatar-user {
    color: rgb(128, 128, 128);
}

.scrolled .avatar-user {
    color: white;
}

.avatar-img {
    border-radius: 50%;
    width: 40px;
}

/* #searchJobs {
    position: absolute;
} */

/* #discoverJobs::before {
    content: url();
    background-image: url("../images/patern.png");
    background-repeat: no-repeat;
    height: 1000px;
} */

/* #discoverJobs {
    height: 1000px;
} */

.card-jev {
    box-shadow: 0 4px 8px rgba(205, 165, 65, 0.5); /* Shadow emas dengan transparansi 50% */
    transition: box-shadow 0.3s ease;
}

.card-jev:hover {
    box-shadow: 0 6px 12px rgba(255, 227, 105, 0.7);
}

footer {
    background: linear-gradient(to right, #ffbc47, #343434);
    color: white;
    padding-top: 5%;
    padding-bottom: 1%;
}

#footerInfo {
    background-color: #e8cfb0;
}

.footer-link {
    text-decoration: none;
    color: white;
    margin-top: 2px;
}

.footer-link:hover {
    color: #e8ddc0;
}

.footer-icon {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
}

.footer-icon i {
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand-info {
    border-top: 1px solid white;
}
