html, body{
    width:100%;
    margin:0;
    font-family: Helvetica, Arial, sans-serif;
    color:white;
    background-color: #6a7c87;
}

#loginContainer{
    position: absolute;
    width:100%;
    margin:0;
    font-family: Helvetica, Arial, sans-serif;
    color:white;
    background-color: #6a7c87;
    text-align: center;
}
#loginContainer .logo{
    position: static;
    width:200px;
    margin-bottom: 30px;
    margin-top:150px;
}
#loginContainer input{
    border:none;
    width:170px;
    height:26px;
    margin-bottom: 6px;
    text-align: center;
    border:2px solid #777;
    outline: none;
}
#loginContainer input.error{
    border:2px solid rgb(209, 33, 33);
}
#logInBtn{
    width: 100px;
    border-radius: 6px;
    height: 30px;
    margin-top:10px;
    transition: background-color 0.4s, border-color 0.4s;
    background-color: #cdd61f;
    border: 0;
    font-size: 14px;
    color: #3d474e;
    font-weight: 500;
    cursor: pointer;
    outline: 0;
}
#logInBtn:hover{
    background-color: #e1eb29;
    color: #31393f;
}

#loginContainer h1{
    display: block;
    font-weight: 100;
    font-size: 16px;
    margin-top:20px;
    margin-bottom:26px;
    letter-spacing: 3px;
    color:#cdd61f;
}
#loginContainer h1 span{
    color:white;
}






#container{
    display:none;
    position: absolute;
    width:100%;
    height:100%;
    font-weight: 600;
    z-index: 1;
    transition: opacity 0.4s;
}

#container:disabled{
    background-color: #cdd61f;
    opacity: 0.2;
}





#blocker{
    position: fixed;
    width:100%;
    height:0%;
    top:0;
    left:0;
    transition: opacity 0.6s;
    opacity:0;
    background-color:#ffffff6e;
    z-index: 2;
}
#blocker.active{
    opacity: 1;
    height:100%;
}





#logOutBtn{
    position: absolute;
    display: none;
    margin: 10px;
    right:0;
    font-size: 13px;
    z-index: 999;
    cursor: pointer;
}
#logOutBtn:hover{
    color:#cdd61f;
}





#menu{
    position: fixed;
    width:100%;
    max-width:320px;
    height:100%;
    left:-320px;
    background-color: #465056;
    transition: left 0.4s;
    z-index: 3;
}

#closeBtn{
    width:40px;
    height:40px;
    position: absolute;
    top:6px;
    right:6px;
    cursor: pointer;
}

#form{
    margin:30px;
}

#menu.closed{
    left:-320px;
}

#menu.open{
    left:0px;
}

#menu h1{
    font-size:21px;
    font-weight: 100;
    margin-bottom: 30px;
}
#menu h2{
    font-weight: 100;
    font-size:13px;
    line-height: 12px;
}
#menu input{
    margin-bottom:10px;
    margin-left:0px;
}
#menu input.check{
    margin-top:16px;
}
#menu input.name{
    width:247px;
}
#menu input.instance{
    width:247px;
}
#menu .instanceList{
    position: absolute;
    width:255px;
    top:258px;
    color:#000;
    font-size: 11px;
    line-height: 21px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
}
#menu .instanceList .item{
    height:20px;
    background-color: white;
    padding-left:4px;
    width:251px;
    border-bottom:1px solid #c7c7c7;
    user-select: none;
}
#menu input.email{
    width:247px;
}
#menu input.code{
    width:161px;
    margin-right:10px;
}






.logo{
    position: relative;
    display: block;
    width:200px;
    top:100px;
    margin:0 auto;
}

#tableWrapper{
    position: relative;
    display: block;
    width: 100%;
    max-width:800px;
    top:100px;
    margin:50px auto;
    font-size:12px;
    transition: opacity 1s;
    opacity: 0;
    z-index: 9999;
}
#tableWrapper.show{
    opacity: 1;
}

#addBtn{
    position: relative;
    width:40px;
    height:40px;
    left:50%;
    margin-left:-20px;
    margin-top:20px;
    margin-bottom:40px;
    cursor: pointer;
}

#userTable{
    width: 100%;
    border-top:1px solid white;
    border-collapse: collapse;
    color:white;
}

td{
    border-bottom:1px solid white;
    padding:16px;
}

tr{
    cursor: pointer;
}

tr:hover{
    background-color: rgba(79, 93, 100, 0.3);
}






.btn{
    width: 100%;
    border-radius: 6px;
    height: 31px;
    margin-top:10px;
    margin-right:20px;
    transition: background-color 0.4s, border-color 0.4s;
    background-color: #cdd61f;
    border: 0;
    font-size: 14px;
    color: #3d474e;
    font-weight: 300;
    cursor: pointer;
    outline: 0;
}
.btn:hover{
    background-color: #e1eb29;
    color: #31393f;
}
.btn.delete{
    background-color: transparent;
    border:1px solid white;
    color:white;
}
.btn.delete:hover{
    background-color: #e45858;
    color: #ffffff;
    border-color:transparent;
}
#errorMsg{
    width:100%;
    margin-top:30px;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    border-top:1px solid #ffffff44;
    color:#e45858;
}
