html
{
    display: table;
}

@media all and (orientation:portrait)
{
    #container
    {
        width: 75%;
        margin-top: 20%;
    }
    input
    {
        font-size: 5vw;
    }
    button
    {
        font-size: 5vw;
    }
    #logoWelcome
    {
        width: 30vw;
    }
}

@media all and (orientation:landscape)
{
    #container
    {
        width: 31%;
    }
    input
    {
        font-size: 3vw;
    }
    button
    {
        font-size: 3vw;
    }
    #logoWelcome
    {
        width: 12vw;
        margin-left: 9vw;
    }
}

#container
{
    margin-right: auto;
    margin-left: auto;
    margin-top: 5%;
}

#login
{
    display: table-cell;

    vertical-align: middle;
}

#logoArea
{
    left: 0;
}

input
{
    width: 100%;
    margin-bottom: 1vw;

    text-align: center;

    border: solid black;
    border-radius: 10px;
}

button
{
    padding: 1vw;
    margin-left: 8.5vw;
    color: white;
    border-radius: 100px;
    background-color: darkcyan;
    box-shadow: 3px 3px grey;
    text-shadow: 3px 3px black;
}

button:active
{
    color: white;
    background-color: darkorange;
    box-shadow: -3px -3px grey;
    text-shadow: 3px 3px black;
}

#pie
{
    font-size: 2vw;

    position: absolute;
    z-index: 999;
    bottom: 0vw;
    left: 0vw;

    color: white;
}
