﻿
body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    /*margin-left: auto;
        margin-right: auto;*/
    margin: 0;
    font-family: Segoe UI,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

hgroup h1 {
    font-weight: 200;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 12px;
}

fieldset {
    -moz-border-radius: 18px;
    -webkit-border-radius: 18px;
    border-radius: 18px;
}

table {
    width: 100%;
    height: 100%;
}

input:not([type='checkbox']) {
    height: 25px;
    width: 80%;
    border-radius: 5px;
}

.label-row {
    vertical-align: bottom;
    font-size: 12px;
}

    .label-row label {
        font-variant: all-petite-caps;
        font-size: 1.2em;
        font-weight: 600;
    }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

#loginContainer {
    min-width: 250px;
    min-height: 300px;
    border-radius: 10px;
    /*    width: 20%;
    height: 50%;*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#resetPasswordForm {
    width: 380px;
}

#changePasswordForm fieldset {
    height: 250px;
    width: 300px;
    border: 0;
}

#loginContent {
    /*    width:100%;
    height:100%;*/
    -moz-box-shadow: 5px 10px 70px 0 #000000;
    -moz-box-shadow: 5px 10px 70px 0 rgba(0,0,0,0.4);
    -webkit-box-shadow: 5px 10px 70px 0 #000000;
    -webkit-box-shadow: 5px 10px 70px 0 rgba(0,0,0,0.4);
    box-shadow: 5px 10px 70px 0 #000000;
    box-shadow: 5px 10px 70px 0 rgba(0,0,0,0.4);
    margin: auto;
    border-radius: 10px;
}

#logoLoginContainer {
    width: 100%;
    padding: 5%;
    /* position: relative; */
    display: flex;
    flex-direction: column;
}

#logonForm,
#orgLabelContainer {
    /* height: 47.5%; */
    height: 85%;
    width: 100%;
    display: inline-block;
}

#registrationForm {
    height: 70%;
}

#registrationForm, #logonForm {
    margin-left: 0%;
}

#orgLabelContainer {
    height: 15%;
}

td {
    text-align: center;
}

#loginFormContainer {
    background-color: var(--bg-lighter);
    float: right;
    /*box-shadow: 0 0 0 1px var(--border);*/
    border: 1px solid var(--border);
    border-left: none;
}

#loginForm {
    /* bottom: 30%; */
    /* position: absolute; */
    width: 100%;
    /* margin: 0 auto; */
    height: 100%;
    margin-block-end: 0;
}

.validation-summary-errors {
    margin-left: 55px;
}

#logonForm,
#registrationForm {
    /* position: relative; */
    width: 100%;
}

input[type="submit"] {
    margin-top: 2%;
}

#registerForm {
    overflow: auto;
    height: 100%;
}

#errorsContainer {
    position: absolute;
    width: 80%;
    padding: 10px;
}

.separator {
    height: 2px;
    background: var(--bg);
    width: 94%;
    margin: 3%;
    border: 1px solid var(--border);
}

#orgLabelContent {
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

    #orgLabelContent span {
        font-size: 1.3em;
        margin: auto;
        font-weight: 600;
        font-variant: all-petite-caps;
    }


#logoContainer {
    width: 100%;
    height: 100%;
    display: flex;
}

    #logoContainer img {
        margin: auto;
        max-height: 100%;
        max-width: 100%;
    }

#textContainer {
    text-align: center;
    width: 100%;
    height: 10%;
    font-size: 1.3em;
}

button {
    background-color: #e6ddd1 !important;
    color: black !important;
    padding: 0;
    height: 30px;
    border: 1px solid var(--border) !important;
    width: 80%;
    margin-top: 10px;
    border-radius: 5px;
}

    button:hover {
        background-color: var(--bg-lighter) !important;
    }

.inline-svg-icon {
    width: 14px !important;
    height: 14px !important;
}
/*#hideshowimg {
        background-image: url(/Content/images/track-default/blink.png) !important;
        width: 16px;
        height: 16px;
    }
    #hideshowimg:active {
        background-image: url(/Content/images/track-default/eye.png) !important;
        width: 16px;
        height: 16px;
    }*/

td.password-login {
    position: relative;
}

    td.password-login button {
        cursor: pointer;
        outline: none;
        border: none;
        background: none !important;
        position: absolute;
        right: 2px;
        top: 2px;
        height: calc(100% - 4px);
    }

        td.password-login button:hover {
            background: none !important;
        }
