/* 

    Auteur: Tim Kleuver
    Datum: 26-8-2024
    beschrijving: toegang.css

*/

#container
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-evenly;
    background: linear-gradient(rgb(35, 0, 123), rgb(22, 22, 38), rgb(18, 18, 22), black);
    width: 72%;
    border: 2px solid white;
    margin: auto;
    padding: 30px;
    padding-bottom: 40px;
}

section{
    margin-bottom: 70px;
}

.item
{
    transform: rotateZ(1deg);
    transition: all 0.5s;
    margin-left: 95px;
    margin-right: 95px;
    margin-top: 35px;
    margin-bottom: 35px;
    height: 350px;
    padding: 4px;
    z-index: 4;
    box-shadow: rgb(255, 255, 255) 2px 2px 2px 2px;
    background-color: rgb(30, 30, 30);
    color: white;
}

.item:hover
{
    transform: rotateZ(1deg);
    transition: all 0.5s;
    margin-left: 95px;
    margin-right: 95px;
    margin-top: 35px;
    margin-bottom: 35px;
    height: 350px;
    padding: 4px;
    z-index: 4;
    box-shadow: white 2px 2px 2px 2px;
    background-color: rgb(30, 30, 30);
    color: white;
}

#item-2
{
    flex-grow: 1;
}

p
{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

@media screen and (min-width: 500px) and (max-width: 1100px) and (max-height: 1400px) { /*phone landscape*/

    #passw_label
    {
        margin-right: 62px;
    }

    #inlog_label
    {
        margin-right: 15px;
    }

}