#logo
{
	height: 10%;
}

.loginSection
{
    display: flex;
    flex-direction: column;
    height: 60%;
    margin: 10% auto 2% auto;
}

.languages a
{
    flex-grow: 1;
}

.footer
{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 30vh;
    position: absolute;
    bottom: 0;
    width: 99.5%;
}

.footer a
{
    text-decoration: none;
    min-width: 33%;
    max-height: 10vh;
}

.footer img
{
    max-width: 100%;
    border-style: none;
    height: 66%;
    margin: 0 auto;
    display: block;
}

.container
{
    display: flex;
    flex-direction: column;
    height: 60%;
    width: 100%;
}

.loginColumn
{
    display: flex;
    flex-direction: column;
}

.loginElement
{
    flex-grow: 1;
    text-align: center;
}

.loginButton
{
    flex-grow: 2;
    text-align: center;
    margin: 10px 0 0 0;
}

.loginText
{
    color: #6e89a7;
    font-weight: bold;
}

.loginButtonAnchor
{
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.loginButton:hover
{
    background-color: #9acadd;
}

.loginUsernamePassword
{
    flex-grow: 1;
}

.loginUsernamePassword input
{
    font-size: 1.2em;
}

.loginRow
{
    display: flex;
    flex-direction: row;
    padding: 20px 0;
}

.languageButton:hover
{
    background-color: cadetblue;
}

/* Smaller phone viewpoints */
@media only screen and (min-width: 320px)
{
    #logo
    {
        height: 5%;
    }
}

/* Small devices and most phones */
@media only screen and (min-width: 480px)
{
    #logo
    {
        height: 10%;
    }

    .loginSection
    {
        display: flex;
        flex-direction: column;
        height: 60%;
        margin: 10% 30% 2% 30%;
    }
    
    .footer
    {
        flex-direction: row;
        height: 10vh;
    }
}

/* Most tablets */
@media only screen and (min-width: 768px)
{
    .loginSection
    {
        display: flex;
        flex-direction: column;
        height: 60%;
        margin: 10% 35% 2% 35%;
    }
}

/* Smaller desktop viewpoints */
@media only screen and (min-width: 992px)
{

}

/* Large devices and wide screens */
@media only screen and (min-width: 992px)
{

}
