.content{
    margin-top: 0px;
    min-height: 100vh;
    text-align: center;
    padding: 40px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: column;
}

.loginForm{
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding:20px;
    width: 100%;
    max-width: 300px;
    margin-top: 50px;
}
.loginForm h1{
    font-size: 30pt;
    letter-spacing:2px;
}
.loginForm h2{
    font-size: 10pt;
    margin-top: -10px;
}
.form{
    position: relative;
    padding:20px;
}

.message{
    position: absolute;
    bottom: 0px;
    left:50%;transform: translateX(-50%);
    width: max-content;
    color: red;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 8pt;
}

.logoutBtn{
    background-color: var(--primaryColor);
    border-radius: 10px;
    padding: 5px 30px;
    transition-duration: 0.2s;
    text-align: center;
    font-size: 17pt;
    text-transform: uppercase;
    font-weight: 800;
    color: #68512b;
    width: max-content;
    margin: 0px auto;
    margin-top: 50px;
    margin-bottom: 20px;
    cursor: pointer;
}
.logoutBtn:hover{
    background-color: var(--primaryColorDarker);
    transition-duration: 0.2s;
    color: white;
}


.files{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.file{
    padding: 5px 20px;
    border-radius: 10px;
    display: flex;
    background-color: rgb(209, 209, 209);
    justify-content: space-between;
    margin-bottom: 5px;
    max-height: 30px;
}

.fName{
    font-weight: 700;
    max-width: 35%;
}

.fActions{
    width: max-content;
    display: flex;
    column-gap: 10px;
}

.downloadBTN{
    padding: 3px 10px;
    border-radius: 10px;
    background-color: green;
    border:none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition-duration: 0.1s;
}
.downloadBTN:hover{
    transition-duration: 0.1s;
    background-color: rgb(1, 70, 1);
}