body {
    background-image: url(pumping.jpg);
    margin-top: 0;
    padding: 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Poppins";
    zoom: 100%;
    
}

.input {
    position: relative;
    border: 1px solid black;
    width: 400px;
    height: 400px;
    background: transparent;
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.75);
    box-sizing: border-box;
    margin-top: 6%;
    padding: 40px;
    width: 35%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    justify-content: space-between; /* Ensures content is spaced out */
    
}
   
h2{
    margin-top: 0;
    line-height: 1;
    text-align: center;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 2px;
    text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
    margin-bottom: 5px;
}

h1 {
    line-height: 1;
    text-align: center;
    font-weight: 100;
    font-size: 15px;
    letter-spacing: 2px;
    text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
    margin-bottom: 20px;

}

button {
    background: rgb(83, 89, 84);
    text-transform: uppercase;
    font-family: "Poppins";
    font-weight: 300;
    font-size: 15px;
    height: 60px;
    width: 300px;
    line-height: 40px;
    border-radius: 10px;
    border: none;
    margin: 10px 60px;
    box-shadow: 0px 0px 5px rgba(18, 7, 7, 0.3);
    color: white;
    cursor: pointer;
    
}

table {
    margin-top: 8%;
    color: white;
    text-align: center;
    opacity: 35%;
    font-size: 13px;
    font-weight: 400;
   
   
}

@media (max-width: 1024px) {
    .input {
        width: 80%;
        padding: 20px;
        height: auto;
    }

    button {
        width: 800px;
        height: 50px;
        margin: 10px 0;
    }

    table {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .input {
        margin-top: 15%;
        width: 90%;
        padding: 15px;
        height: auto;
    }

    button {
        margin-left: 10%;
        width: 500px;
        height: 70px;
        margin: 10px 0;
    }

    
}

@media only screen and (max-width: 575.98px) {
    .input {
        margin-top: 55%;
        left: 5px;
        width: 700px;
        padding: 15px;
        height: auto;
    }

    button {
        margin-left: 10%;
        width: 300px;
        height: 70px;
        margin: 10px 0;
    }

}

/* Untuk ukuran layar kecil (sm) */
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
    .input {
        margin-top: 50%;
        width: 90%;
        padding: 15px;
        height: auto;
    }

    button {
        margin-left: 10%;
        width: 500px;
        height: 70px;
        margin: 10px 0;
    }
}

@media only screen and (max-width: 950px) and (orientation: landscape) {
    .input {
        margin-top: 25px;
        height: 500px;
        zoom:80%;
        
    }
    
}