* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins', sans-serif;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: url("../Assets/background/check.jpg") no-repeat;
    /* background: #e8e4d9; */
    background-size: cover;
    background-position: center;
    /* animation: animateBg 10s linear infinite; */
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10%;
}

@keyframes animateBg {
    100% {
        filter: hue-rotate(360deg);
    }    
}

.login-box {
    position: relative;
    /* margin-left: 350px; */
    width: 450px;
    /* height: 450px; */
    overflow: auto;
    padding: 30px;
    border: 4px solid #fde001;
    box-shadow: 0 0 20px rgba(253, 224, 1, 1.5);
    /* background: transparent; */
    background: rgb(255, 255, 255);/* Adjust the color and transparency here WHITE BACKGROUND*/ 
    border-radius: 20px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    backdrop-filter: blur(50px);
}

.input-box {
    width: 200px;
    border: 3px solid #000000;
}

h2 {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .login-box {
        width: 100%;
        height: 100vh;
        border: none;
        border-radius: 0;
    }

    .input-box {
        width: 200px;
    }
}