body{
    padding: 0;
    margin: 0;
    height: 100vh;
    font-family: Arial;
    display: flex;
    justify-content: center;
}

.loginFormContainer{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.loginForm{
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 700;
    background-color: #CC0066;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.2);
    color: white;
}

.loginForm>span{
    margin-bottom: 15px;
}

.loginForm>form{
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 13px;
    font-weight: 300;
}

.loginForm input{
    margin-bottom: 8px;
}

.infoline{
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.container{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    padding: 10px;
    background-color: #CC0066;
}

.header>a{
    margin-right: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin-right: 20px;
}

.header>a:hover{
    text-decoration: underline;
}

.tabledata{
    margin-top: 20px;
}

.tabledata th{
    margin-bottom: 7px;
}

.tabledata td{
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.formAddUser{
    display: flex;
    flex-direction: row;
}

.formAddUser input{
    margin-bottom: 10px;
    margin-right: 15px;
}

.formAddUser select{
    margin-bottom: 10px;
    margin-right: 15px;
}

@media screen and (max-width: 900px) {
    .formAddUser{
        flex-direction: column;
        
    }
}