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";


}

.input {
    margin-top: 10px;
    position: relative;
    border: 1 px solid black;
    width: 600px;
    height: 650px;
    background: transparent;
    backdrop-filter: blur(15px);
    color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.75);
}

form {
    box-sizing: border-box;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

h1 {
    margin-top: 15px;
    line-height: 1;
    text-align: center;
    font-weight: 600;
    font-size: 35px;
    letter-spacing: 2px;
    text-shadow: 0px 0px 5px black;
    margin-bottom: 0px;
}

h2 {
    margin-top: 8px;
    line-height: 1;
    text-align: center;
    font-weight: 600;
    font-size: 35px;
    letter-spacing: 2px;
    text-shadow: 0px 0px 5px black;
    margin-bottom: 0px;
}

label {
    display: flex;
    justify-content: left;
    margin-left: 24px;
    opacity: 60%;
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 15px;
    
}

.box-input {
    display: flex;
    justify-content: center;
    margin: 15px;
    border-bottom: 2px solid white;
    padding: 5px 0;
}

.box-input input{
    width: 95%;
    padding: 5px 0;
    background: none;
    border: none;
    color: white;
    font-weight: 300;
    font-size: 15px;
}

.box-input input::placeholder{
    color: white;
    opacity: 60%;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-input {
    background: rgb(22, 107, 34);
    text-transform: uppercase;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 20px;
    height: 40px;
    width: 400px;
    line-height: 40px;
    border-radius: 10px;
    border: none;
    margin: 10px 60px;
    box-shadow: 0px 0px 5px rgba(53, 52, 52, 0.3);
    color: white;
    cursor: pointer;
    margin-left: 70px;
}

table {
    margin-top: 10px;
    color: white;
    text-align: center;
    opacity: 30%;
    font-size: 15px;
    font-weight: 400;
   
   
}

@media (max-width: 890px) {
    .input {
        margin-top: 35%;
        width: 80%;
        height: auto;
        padding: 20px;
    }
    .btn-input {
        width: 300px;
        margin-left: 25%;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    h1, h2 {
        font-size: 28px;
    }
    .btn-input {
        width: 250px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .input {
        width: 90%;
        height: auto;
        padding: 10px;
    }
    h1, h2 {
        font-size: 24px;
    }
    .btn-input {
        width: 200px;
        font-size: 16px;
    }
    .box-input input {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .input {
        margin-top: 50%;
        zoom:70%;
        width: 90%;
        height: auto;
        padding: 10px;
    }
    h1, h2 {
        font-size: 24px;
    }
    .btn-input {
        width: 200px;
        font-size: 16px;
    }
    .box-input input {
        font-size: 14px;
        width: 250px;
    }
}




@media (orientation: landscape) and (max-width: 767px) {
    .input {
        zoom: 70%;
        width: 70%;
        height: auto;
    }
    h1, h2 {
        font-size: 20px;
    }
    .btn-input {
        margin-left: 35%;
        width: 180px;
        font-size: 14px;
    }
}
