*{
    box-sizing: border-box;
}

body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#div_main{
    display: flex;
    justify-content: center;
    place-items: center;
    height: 100vh;
}
#div_login_form{
    width: 30%;
    border: 1px solid blue;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 3px 6px 10px 2px rgba(0, 0, 0, 0.3);
    height: 80vh;
}
#div_login_form h5{
    text-align: center;
    font-size: 22px;
}

#div_logo{
    margin: 20px 0px;
    background-color: rgb(10, 10, 88);
    border-radius: 10px;
}
#div_logo img{
    width: 100%;
}

.login_label{
    margin-top: 10px;   
    text-align: left;
}
.login_input{
    width: 100%;
    padding: 8px 4px;
    border: 2px solid blue;
    border-radius: 5px;
    margin-bottom: 15px;
}

#btn_login{
    margin: 10px 0;
    width: 100%;
    padding: 10px 5px;
    border: none;
    border-radius: 5px;
    background-color: rgb(94, 90, 233);
    color: antiquewhite;
}

@media screen and (max-width: 768px){ 
    #div_login_form{
        width: 100%;
    }
}