body {
    
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    
    /* GANTI BAGIAN LATAR BELAKANG INI */
    background-color: #f8f9fa; /* Warna dasar jika pola gagal dimuat */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d4d8e2' fill-opacity='0.4'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px 0; /* Tambahkan sedikit padding atas-bawah */
}
.container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}
h1 {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}
p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
input[type="text"],
input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
button {
    width: 100%;
    padding: 12px;
    background-color: #5c67f2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
button:hover {
    background-color: #4a54e1;
}
.link-data {
    text-align: center;
    margin-top: 20px;
}
.link-data a {
    color: #5c67f2;
    text-decoration: none;
    font-weight: bold;
}
.link-data a:hover {
    text-decoration: underline;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
/* Tambahkan ini di file css/style.css */
.action-buttons {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}
.action-buttons a {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.button-excel {
    background-color: #28a745;
}
.button-excel:hover {
    background-color: #218838;
}
.button-back {
    background-color: #007bff;
}
.button-back:hover {
    background-color: #0069d9;
}

.status-text-verifikasi {
    background-color: #6c757d; /* Warna abu-abu netral */
}



.logo-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40px; /* Anda bisa sesuaikan ukuran logo di sini */
    margin-bottom: 10px; /* Jarak antara logo dan judul */
}

/* --- Media Query untuk Layar Mobile --- */
/* Aturan ini akan berlaku jika lebar layar 600px atau kurang */
@media (max-width: 600px) {
    .login-container {
        width: 100%; /* Gunakan lebar penuh layar */
        max-width: 100%;
        padding: 25px; /* Kurangi padding agar tidak terlalu makan tempat */
        box-shadow: none; /* Hilangkan bayangan agar terlihat lebih 'native' */
        border-radius: 0;
    }

    body {
        /* Hapus alignment agar kotak login menempel di atas */
        align-items: flex-start; 
        background-color: white; /* Samakan background agar menyatu */
    }
    
    h2 {
        font-size: 24px; /* Sedikit kecilkan judul */
    }
}