.main-area {
    background-color: #0d4062;
    padding-top: 5%;
    padding-bottom: 5%;
    border-top: 2px solid white;
    //regolare la dimensione del form dell'area riservata


    .form-area {
        background-color: #405a7a;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;

        @media screen and (min-width: 769px) {
            width: 50%;
        }

        @media screen and (max-width:768px) {
            width: 85%;
        }


        .form-title {
            color: white;
            text-transform: uppercase;
            text-align: center;
            margin-top: 2vh;

        }


        .form-elem {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-top: 0;



            .form-label {
                color: white;
            }

        }

        .button-invia {
            background-color: white;
            color: #0d4062;
        }

    }
}

.files h5 {
    cursor: pointer;
    position: relative;
    padding-left: 25px;

    &::before {
        content: '';
        border-bottom: 2px solid #000;
        border-right: 2px solid #000;
        width: 10px;
        height: 10px;
        position: absolute;
        left: 0;
        top: 4px;
        transform: rotate(-45deg);
        transition: transform .2s;
    }

    &:hover {
        color: #0d4062;
        &::before{
            border-color: #0d4062;
        }
    }

    &.active::before {
        transform: rotate(45deg);

    }
}

.filegrid {
    padding-left: 25px;
}

h5+.filegrid {
    display: none;
}

h5.active+.filegrid {
    display: block;
}

.filerow {
    margin-top: 3px;
    margin-bottom: 3px;
}

.btn-logout {
    margin-top: 0;
    margin-bottom: 2rem;
}

.grid-area {
    margin-top: 2rem;
}