
body {
    background: url(pumping.jpg);
    margin: 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: 120%;
    
}

    .input {
        margin-top: 17%;
        position: relative;
        border: 1px solid black;
        width: 310px;
        height: auto;
        background: transparent;
        backdrop-filter: blur(10px);
        color: white;
        border-radius: 20px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.75);
    
    }

 
    form {
        box-sizing: border-box;
        padding: 40px;
        width: 100%;
        height: 100%;
        flex-direction:column;
        display: flex;
        gap: 5px;
    }

h1 {
    margin-top: 10%;
    margin-left: 15%;
    text-align: left;
    font-weight: 400px;
    font-size: 26px;
    letter-spacing: 2px;
    text-shadow: 0px 0px 2px rgba(0,0,0,0.5);
    margin-bottom: 0;

}


label {
    color: rgba(255,255,255, 0.8);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    padding-left: 10px;
}

input {
    background: rgba(255,255,255, 0.3);
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0px 20px;
    border: none;
    margin-bottom: 20px;
    color: white;
}



button {
    background: rgb(22, 107, 34);
    text-transform: uppercase;
    font-family: "Poppins";
    font-weight: 500;
    height: 40px;
    width:200px;
    line-height: 40px;
    border-radius: 10px;
    border: none;
    margin: 10px 3px;
    box-shadow: 0px 0px 5px rgba(53, 52, 52, 0.3);
    color: white;
    cursor: pointer;
}




@media only screen and (max-width: 575.98px) {
    .input {
        zoom: 80%;
        margin-top: 50%;
        width: auto;
        padding: 15px;
        height: auto;
    }

    button {
        margin-left: 10%;
        width: auto;
        height: 50px;
        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: auto;
        height: 70px;
        margin: 10px 0;
    }
}


@media (max-width: 970px) and (orientation: landscape) {
    .input {
        margin-top: 5%;
        left: auto;
        width: 90%;
        height: auto;
        padding: 20px;
        border-radius: 15px;
        zoom: 75%;
    }
}