﻿html, body {
    height: 100%;
    font-size: 16pt;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.3;
    background: url(/img/background-desktop.jpg) center no-repeat;
    background-size: cover;
}

@media screen and (max-width: 640px) {
    body {
        background: url(/img/background.jpg) center no-repeat;
        background-size: cover;
    }
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    width: 320px;
}

@media screen and (max-width: 640px) {
    .login-box {
        width: 320px;
    }
}

.login-logo {
    font-size: 35px;
    text-align: center;
    font-weight: 300;
    margin-top: 10px;
}

.logo img {
    display: inline;
    padding-bottom: 4px;
    max-height: 100%;
    max-width: 60px;
}

.login-box-body {
    padding: 10px 0 20px 0;
    border-top: 0;
}

.contact-box {
    display: flex;
    align-items: center;
    flex-direction: column
}