﻿/* CSS layout */
html,
body, form, #page {
    display: flex;
    flex-grow: 1;
    height: calc(100% - 5px);
    font-family: Verdana,Tahoma;
    font-size: 1em;
    color: #444;
}

#page {
	/*border:solid 1px #f00;*/
}


#page {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

#login-box {
    display: flex;
    flex-direction: column;
    max-width: 250px;
    flex-grow: 1;
}

    #login-box div {
        flex-grow: 1;
        display: flex;
        align-items: center;
        margin-bottom: .5rem;
    }

.LoginBoxText img {
    margin: auto;
}

.welcome {
    justify-content: center;
    padding-bottom: 1rem;
}

select, input, select:focus, input:focus {
    flex-grow: 1;
    display: flex;
    min-width: 0;
    padding: .5rem .2rem;
    border: 1px solid #DCDCDC;
    border-radius: .2rem;
    background-color: #fff;
    color: #444;
    outline-offset: 0px !important;
    outline: none !important;
}

.remember {
    font-size: .7em;
    align-items: end;
    margin-bottom: 0 !important;
    justify-content: flex-end;
    flex-direction: row;
}

    .remember input {
        flex-grow: 0;
    }

a {
    display: flex;
    flex-grow: 1;
    border-radius: .2rem;
    padding: .5rem 0;
    background-color: #286FBD;
    border: 1px solid #286FBD;
    color: #fff;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: .9em;
}