*{
    margin: 0;
    padding: 0%;
    font-family: Calibri;
}
body{
    
    background-color: #0c8a79;
}
.login{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100vh;

}
.loginForm{
    border: black solid 1px;
    border-radius: 20px;
    width: 300px;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: rgb(216, 223, 152);
    box-shadow: 0px 0px 10px black;




}
input{
    width: 90%;
    height: 30px;
    border-radius: 10px;


}
.sub{
    background-color: rgb(19, 168, 166);
}
.sub:hover{
    transform: scale(1.04);
    background-color: rgb(0, 102, 0);
    color: white;
    transition: 0.5s;
}
.userName,.password:hover{
    transition: 0.5s;
    transform: scale(1.04);


}
.list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.listNames{
    text-align: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 20px;
    width: 270px;
    margin:auto;
    padding-top:20px ;
    padding-bottom: 20px;
    margin-top:50px;
    background: darkgreen;
    box-shadow: 0px 0px 10px black;


}
.listNames:hover{
    transform: scale(1.04);
    transition: 0.5s;
}
.names{
    font-weight: bolder;
    font-family: Calibri;

}
a{
    text-decoration: none;
    color: white;
}
div.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 110vh;
    width:100vw;

}
table{
    margin-top: 50px;
    width: 300px;
    text-align: center;
    border: 5px solid white;
    box-shadow: 0px 0px 10px black;
    background-color: white;
    color: black;
    border-radius: 20px;


}
.logout{
    width: 300px;
    height: 50px;
    color: black;
    background-color: white;
    margin-top: 20px;
}