#login_form{
    width: 300px;
    margin-left: calc(50% - 150px);
    height: 30%;
    border-width: 1px;
    padding-left: 2%;
    margin-top: 100px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 200;
    font-variant: normal;
    font-stretch: semi-expanded;
    font-style: bold;
}
.inputs{
    width:250Px;
    height: 28px;
    border-radius: 2px;
    border-width: 1px;
    border-color: darkblue;
    background-color:lightsteelblue;
    margin-top: 5px;
    border-style: none;
}
.inputs:focus{
    box-shadow:0px 5px 10px darkblue;
    border-style: none;
    border-width: 0;
}
#login_img{
    width:150px;
    height: 150px;
    margin-left:50px;
}
.btn{
    width: 80px;
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 50px;
    height: 30px;
    background-color: rgb(9, 39, 94);
    border-color: antiquewhite;
    color:White;
    border-radius: 3px;
    border-width: 1px;
}
#user_id_top{
    color:rgb(9, 39, 94);
    cursor: pointer;
}
#users_cont{
    display: none;
    }
#user_id_top:hover~#users_cont{
    display: block;
}
#users_cont:hover{
    display: block;
}
.btns{
    width: 100px;
    height: 30px;
    background-color: rgb(9, 39, 94);
    border-color: antiquewhite;
    color:White;
    border-radius: 3px;
    border-width: 1px;
}
.notif{
    cursor: pointer;
}
#msg{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: medium;
    font-style: normal;
    color: green;
    animation: pop_msg 0.5s infinite;
}
@keyframes pop_msg{
    0%{text-shadow: 2px 3px 2px greenyellow;}
    100%{text-shadow: 2px 3px 2px greenyellow;}
}
/* Registration */
#register_form{
text-align: center;
width: 100%;
}
#user_detail{
    text-align: left;
    width: 300px;
    margin-left: calc(50% - 150px);
}

/* panels  */
#users_panel{
    width: 100%;
    text-align: right;
    font-size: 15px;
}
.user_fields{
height: 30px;
width: 150px;
border-radius: 2px;
    border-width: 1px;
    border-color: darkblue;
    background-color:lightsteelblue;
    margin-top: 5px;
    border-style: none;
}
#genral_config th{
text-align: left;
background-color: darkblue;
color: white;
}