body {
    background-color: #2A9D8F;
    background-image: url('../images/background_login_admin.png');
    background-size: cover; /* Menutupi seluruh area latar belakang */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Tinggi penuh viewport */
    margin: 0;
}

.btn-kembali {
    background-color: #2A9D8F;
    color: white;
    padding: 10px 20px; /* Padding dalam tombol */
    border-radius: 5px; /* Sudut melengkung tombol */
    text-decoration: none; /* Menghilangkan garis bawah pada tautan */
    transition: all 0.3s ease; /* Efek transisi saat hover */
}

.btn-kembali:hover {
    background-color: #238477; 
    color: white;
}

.btn-kembali:active,
.btn-kembali:focus {
    background-color: #2A9D8F !important; /* Warna saat diklik */
    color: white !important; /* Warna teks saat diklik */
    outline: none;
}

.container {
    background-color: white; /* Warna latar belakang kontainer */
    border-radius: 10px; /* Sudut melengkung kontainer */
    padding: 20px; /* Padding dalam kontainer */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Bayangan untuk efek kedalaman */
    max-width: 600px; /* Lebar maksimum kontainer */
    width: 100%; /* Lebar penuh kontainer */
}

.file-item {
    display: flex; /* Menggunakan flexbox untuk tata letak item file */
    align-items: center; /* Memusatkan item secara vertikal */
    justify-content: space-between; /* Menyebar item secara horizontal */
    border: 1px solid #e0e0e0; /* Garis batas item file */
    border-radius: 5px; /* Sudut melengkung item file */
    padding: 10px; /* Padding dalam item file */
    margin-bottom: 10px; /* Jarak bawah item file */
}

.file-item img {
    width: 30px; /* Lebar gambar dalam item file */
    height: 30px; /* Tinggi gambar dalam item file */
}

.file-item a {
    text-decoration: none; /* Menghilangkan garis bawah pada tautan */
    color: #007bff; /* Warna teks tautan */
}

.file-item a:hover {
    text-decoration: underline; /* Garis bawah saat hover pada tautan */
}

.file-item .file-info {
    display: flex; /* Menggunakan flexbox untuk tata letak informasi file */
    align-items: center; /* Memusatkan item secara vertikal */
}

.file-item .file-info img {
    margin-right: 10px; /* Jarak kanan gambar dalam informasi file */
}

.file-item .file-info span {
    font-size: 16px; /* Ukuran font untuk teks informasi file */
}

.file-item .download-icon {
    font-size: 20px;
    color: #007bff;
}

.guide {
    margin-top: 20px; /* Jarak atas untuk panduan pendaftaran */
}

.guide ol {
    padding-left: 20px; /* Padding kiri untuk daftar terurut */
}