* {
    font-family: "Inter";
    color: white;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0F0E0E;
    margin: 0;
    overflow: hidden; /* Mencegah scroll bar */
}

/* Background animation styling */
#bg-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Kirim ke belakang */
    overflow: hidden;
}

/* Container styling */
.container {
    z-index: 1; /* Pastikan konten di atas background */
    background: rgba(31, 31, 31, 0.6); /* Transparansi agar background animasi terlihat */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

input, select, option {
    color: #0F0E0E;
    width: 95%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
    outline: none;
    text-align: center;
    font-size: medium;
    align-content: center;
}

button {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    /* margin: 10px; */
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #1F1F1F;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: medium;
}

button:hover {
    background-color: #3F3F3F;
}

h3 {
    color: white;
}
