html, body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.login-bg {
    height: 100vh; 
    width: 100vw;
    background: url('../img/login_bg.jpg') no-repeat center center;
    background-size: cover; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form{
    width: 400px;
    height: 400px;
    background-color: rgb(12, 68, 141);
    display: flex;
    justify-content: center;
    border-radius: 10px;
}

.login-input h4{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    color: white;

}

.login-input, input[type="text"], input[type="password"]{
    width: 300px;
    height: 50px;
 
}

.login-input button{
    font-size: 25px;
    margin-top: 30px;
    width: 300px;

}

.carousel-container{

    margin-top: 500px;

}

@media screen and (max-width: 768px) {

    .login-form{
        width: 350px;
        height: 350px;
    }

    .login-input, input[type="text"], input[type="password"]{
        width: 270px;
        height: 40px;
    
    }

    .login-input button{
        font-size: 20px;
        margin-top: 30px;
        width: 270px;

    }
    
  
}