.login-sec{
    background-color: #ebebeb;
    width: 100%;
    height: auto;
}

.background-img {
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.background-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-in 20s ease-in infinite;
    
}

@keyframes zoom-in{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}

.background-img-wrapper{
    width: 100%;
    height: 100vh;
    z-index: 10;
    position: absolute;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.login-container{
    padding-top: 1rem;
    width: 24rem;
    height: 28rem;
    background-color: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
}

.kslogo{
    width: 5rem;
    margin-left: auto;
    margin-right: auto;
}

.kslogo img{
    width: 100%;
}

.login-container p{
    margin: 0 auto;
    color: #FFF;
    font-size: 32px;
    font-weight: 300;
    font-family: 'poppins', 'sans-serif';
}

.login-form{
    padding: 0 1rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
textarea, input { 
    outline: none;
    -webkit-appearance: none;
    border: none;
    box-shadow: none;

}

.login-input{
    position: relative;
}

.login-input input{
    font-family: 'poppins', 'sans-serif';
    color: #fff;
    width: 100%;
    font-size: 22px;
    height: auto;
    background-color: transparent;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #fff;
    padding: .5rem 1rem;
    border-radius: 0;
    -webkit-appearance:none;
    
}

.login-input label{
    font-family: 'poppins', 'sans-serif';
    color: #fff;
    font-size: 12px;
    padding: .5rem .2rem;
    transition: .3s ease;
    
}

.submit-log{
    padding-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.submit-log button{
    padding: .7rem;
    font-family: 'poppins','sans-serif';
    margin: auto;
    margin-top: 2rem;
    width: 50%;
    background-color: #FFF;
    color: #000;
    border: none;
    box-shadow: none;
    -webkit-appearance:none;
}

.submit-log button:hover{
    cursor: pointer;
}


@media(max-width: 440px){
        .login-container{
            padding-top: 1rem;
            width: 20rem;
            height: 24rem;
            background-color: rgba(255, 255, 255, .2);
            backdrop-filter: blur(5px);
            display: flex;
            flex-direction: column;
        }
        .kslogo{
            width: 4rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        
        .login-container p{
            margin: 0 auto;
            color: #FFF;
            font-size: 32px;
            font-weight: 300;
            font-family: 'poppins', 'sans-serif';
        }
        
        .login-form{
            padding: 0 1rem;
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        textarea, input { 
            outline: none;
            -webkit-appearance: none;
            border: none;
            box-shadow: none;
        
        }
        
        .login-input{
            position: relative;
        }
        
        .login-input input{
            font-family: 'poppins', 'sans-serif';
            color: #fff;
            width: 100%;
            font-size: 16px;
            height: auto;
            background-color: transparent;
            backdrop-filter: blur(5px);
            border-bottom: 1px solid #fff;
            padding: .5rem 1rem;
            
        }
        
        .login-input label{
            font-family: 'poppins', 'sans-serif';
            color: #fff;
            font-size: 12px;
            padding: .5rem .2rem;
            transition: .3s ease;
            
        }
        
        .submit-log{
            padding-top: 1rem;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        .submit-log button{
            padding: .7rem;
            margin: auto;
            margin-top: 1rem;
            width: 50%;
        }
}


@media(max-width: 342px){
    .login-container{
        padding-top: 1rem;
        width: 90%;
        height: 22rem;
        background-color: rgba(255, 255, 255, .2);
        backdrop-filter: blur(5px);
        display: flex;
        flex-direction: column;
    }
    
    .login-container p{
        margin: 0 auto;
        color: #FFF;
        font-size: 26px;
        font-weight: 300;
        font-family: 'poppins', 'sans-serif';
    }
    
    .login-form{
        padding: 0 1rem;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    textarea, input { 
        outline: none;
        -webkit-appearance: none;
        border: none;
        box-shadow: none;
    
    }
    
    .login-input{
        position: relative;
    }
    
    .login-input input{
        font-family: 'poppins', 'sans-serif';
        color: #fff;
        width: 100%;
        font-size: 18px;
        height: auto;
        background-color: transparent;
        backdrop-filter: blur(5px);
        border-bottom: 1px solid #fff;
        padding: .5rem 1rem;
        
    }
    
    .login-input label{
        font-family: 'poppins', 'sans-serif';
        color: #fff;
        font-size: 12px;
        padding: .5rem .2rem;
        transition: .3s ease;
        
    }
    
    .submit-log{
        padding-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .submit-log button{
        padding: .7rem;
        margin: auto;
        margin-top: 1rem;
        width: 50%;
    }
}
