/* font api */
@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@600&display=swap');

* {
    /* ganti font family */
    font-family: 'Handjet', sans-serif;
    font-size: 25px;
    color: white;
    letter-spacing: 2.5px;
}

body {
    /* isi url bg nya di sini */
    canvas {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    #matrixCanvas {
        z-index: -1;
    }
    
}
.form-container {
    width: 325px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #ff0000;
}

.form-container img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
margin-top: 6rem;
}
.progress-container {
    display: none;
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    padding: 10px;
    background-color: #ff0000;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.progress-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: repeating-linear-gradient(45deg, #ff0000, #ff0000 10px, transparent 10px, transparent 20px);
    background-size: 28px 28px; /* Sesuaikan ukuran garis strip sesuai keinginan */
    animation: progressAnimation 2s linear infinite;
}

.progress-text {
    color: #ff0000;
    font-size: 16px;
    margin-bottom: 10px;
}

.progress-info {
    color: #ff0000;
    font-size: 14px;
}

@keyframes progressAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 28px 0;
    }
}

/* == */

#customers2 {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 90%;
    height:180px;
    margin:auto;
    text-align:center;
}
#customers2 th {
    font-size:12px;
    width:50%;
    border-top:1px solid white;
    border-bottom:1px solid white;
    background: #000;
    padding: 8px;
    color:white;
    font-weight:700;
}
#customers2 td{
    font-size:12px;
    width:50%;
    background: #000;
    padding: 8px;
    color:white;
    font-weight:700;
}
#customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 90%;
    height:180px;
    margin:auto;
    text-align:center;
}
#customers th {
    font-size:12px;
    width:50%;
    border-bottom:1px solid white;
    background: #000;
    padding: 8px;
    color:#fcee0c;
    font-weight:bold;
}
#customers td{
    font-size:10px;
    width:50%;
    background: #000;
    padding: 8px;
    color:#fcee0c;
    font-weight:bold;
}
#container{
    display:block;
}
#container2{
    display:none;
}
#pros{
    font-size:20px;
}

.pros {
    border-top:1px solid white; 
    border-bottom:1px solid white; 
    padding-top:20; 
    padding-bottom:20; 
    background:#000; 
    color:red;
}
.yellow {
    color: beige;
    line-height:1;
    font-size:16px;
}
.input-field,
.select-field {
    width: 100%;
    padding: 10px;
    font-weight: 700;
    margin-bottom: 10px;
    box-sizing: border-box;
}
marquee {
    color: red;
    background: yellow;
}

.container {
    margin-top: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 35% !important;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    background-color: rgb(59, 0, 0);
}

.logobanner {
    margin: 10px 5px;
    text-align: center;
}

.req {
    color: #ff0000;
}

.formbox {
    margin: 10px;
}

.form-check span {
    margin-left: 5px;
    font-size: medium;
    text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
}

.btn-formbox {
    margin-bottom: 10px;
}

strong {
    text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
}

@media (max-width: 920px) {
    .container {
        max-width: 90% !important;
    }
}
/* Style untuk angka jitu */
.modal-content h2 {
    font-size: 24px;  /* Ubah ukuran font angka */
    color: #ff0000;   /* Warna merah */
    font-weight: bold; /* Buat lebih tebal */
}

/* Style untuk teks informasi */
.modal-content h6 {
    font-size: 16px;  /* Ukuran font lebih kecil */
    color: #000000;   /* Warna abu-abu gelap */
    font-weight: normal; /* Tidak terlalu tebal */
    margin-bottom: 10px; /* Jarak dari elemen bawahnya */
}

/* Style untuk tombol */
.btn-modal {
    font-size: 18px;  /* Ukuran teks tombol */
    color: white;      /* Warna teks putih */
    background-color: red; /* Warna tombol merah */
    border: none;       /* Hapus border */
    padding: 10px 15px; /* Tambahkan padding */
    cursor: pointer;    /* Ubah kursor jadi tangan */
    border-radius: 5px; /* Buat sudut tombol melengkung */
    margin-top: 10px;   /* Beri jarak dengan elemen atasnya */
}

/* Hover effect pada tombol */
.btn-modal:hover {
    background-color: darkred; /* Warna lebih gelap saat dihover */
}
