body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('img/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 500px;
    width: 90%;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    color: #333;
    margin: 10px 0;
}

p {
    color: #555;
}

.button-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-izin {
    display: block;
    background-color: #4CAF50; /* Default Green for Izin Keluar Masuk */
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 4px 24px; /* Memberikan margin kiri dan kanan agar tidak menyentuh tepi */
    width: calc(100% - 60px); /* Mengurangi lebar tombol agar ada ruang di kiri dan kanan */
    text-align: center;
    transition: background-color 0.3s;
}

.btn-izin:hover {
    background-color: #45a049; /* Warna hijau lebih gelap saat hover */
}

/* Warna untuk tombol Izin Keluar Masuk */
.btn-izin:first-child {
    background-color: #4CAF50; /* Hijau */
}

.btn-izin:first-child:hover {
    background-color: #45a049; /* Hijau lebih gelap */
}

/* Warna untuk tombol Izin Keluar Barang */
.btn-izin:nth-child(2) {
    background-color: #2196F3; /* Biru */
}

.btn-izin:nth-child(2):hover {
    background-color: #1976D2; /* Biru lebih gelap */
}

/* Warna untuk tombol Izin Release Absen */
.btn-izin:nth-child(3) {
    background-color: #FB8F37; /* Orange */
}

.btn-izin:nth-child(3):hover {
    background-color: #D16813; /* Orang lebih gelap */
}

/* Warna untuk tombol Cek Izin */
.btn-izin:last-child {
    background-color: #9E9E9E; /* Abu-abu */
}

.btn-izin:last-child:hover {
    background-color: #757575; /* Abu-abu lebih gelap */
}

@media (max-width: 768px) {
    .container {
        max-width: 65%;
    }
}
