html{
    height: 100%;

}

body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px;
    margin: 0;
    height: 100%;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0px;
    padding: 0em 2em 0em 2em;
    background-color: aqua;
    align-items: center;
}

main {
    display: flex;
    flex-direction: column;
    align-items: left;
    background-color : #000b36;
    color : #b4b6c6;
    height : 100%;
    padding : 1em;
    /*gap : 1em;*/
}

footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: grey;
}

a{
    text-decoration: none;
    color: black;
}

.aItem{
    color: #b4b6c6;
}

.dItem {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    padding-left: 2em;
    padding-right: 2em;
}

.dItem:hover{
    background-color: #003752;
}

.imgDownload{
    width: 3em;
}

.separator {
    /*border-bottom: solid;*/
}

.column{
    display: flex;
    flex-direction: column;
}

.row{
    display: flex;
    flex-direction: row;
}

.center{
    justify-content: center;
}

.formSign{
    display: flex;
    flex-direction: column;
    gap: 2em;
    border: solid;
    border-width: 0.2em;
    border-radius: 1em;
    padding: 2em;
}

.divPwd{
    gap: 0.5em;
}

.btnSign{
    width: fit-content;
    font-size: 1.2em;
}

.error_msg{
    color: red;
}

#imgLogin{
    width: 2em;
}

#divHeaderRight{
    display: flex;
    flex-direction: row;
    font-weight: bold;
    gap: 1em;
    align-items: center;
}

