﻿HTML {
    color: #4f4f4f;
    background-color: #5F6062;
    font-weight: 400;
    font-family: 'Titillium Web', Verdana, sans-serif;
    background-image: url(../images/login-bg.jpg);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body {
    height: 100%;
    margin: 0;
}

a:link, a:visited {
    text-decoration: none;
}

input[type=text], input[type=password], input[type=email] {
    font-size: 1.1em;
    padding: 0.3em;
    border: 1px solid #a5a5a5;
    border-radius: 0.3em;
}

a.aspNetDisabled {
    background-color: #fff;
    color: #d0d0d0;
}

a.aspNetDisabled, input[type=image].aspNetDisabled, input[type=submit].aspNetDisabled, input[type=button].aspNetDisabled, button.aspNetDisabled {
    filter: contrast(25%) brightness(140%) grayscale(70%);
}

select {
    font-size: 1.1em;
    padding: 0.3em;
    border: 1px solid #a5a5a5;
    border-radius: 0.3em;
    vertical-align: middle;
}

.btn {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    border: 1px solid transparent;
    padding: 0.4rem 1.0rem;
    margin: 0.1rem;
    font-size: 1.1rem;
    line-height: 1.2rem;
    border-radius: 0.3rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-primary, a.btn-primary {
    color: #fff;
    background-color: #007bff;
    border: solid 1px #007bff;
}

    a.btn-primary:link {
        color: #fff;
    }

    .btn-primary:hover {
        color: #fff;
        background-color: #0069d9;
        border: solid 1px #0062cc;
    }

    .btn-primary:focus {
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
    }

.btn-standard {
    color: #000;
    background-color: #efefef;
    border: solid 1px #a5a5a5;
}

    .btn-standard:hover {
        color: #000;
        border: solid 1px #000;
        background-color: #e5efff;
        -webkit-box-shadow: 0px 0px 3px #888;
        -moz-box-shadow: 0px 0px 3px #888;
        box-shadow: 0px 0px 3px #888;
    }

    .btn-standard:focus {
        box-shadow: 0 0 0 0.2rem rgba(123,123,123,.5);
    }


.errortextcolor {
    font-weight: bold;
    color: Red;
}

    .errortextcolor:before {
        content: "✖ ";
    }

.textboxerror {
    border: 2px solid Red;
    background-color: #FFC0C0;
}

.warningtextcolor {
    font-weight: bold;
    color: Orange;
}

.oktextcolor {
    font-weight: bold;
    color: Green;
}

    .oktextcolor:before {
        content: "✔ ";
    }

.message {
    font-weight: bold;
    display: block;
    padding: 0.4em;
    border-radius: 0.3em;
    margin: 0.2em 0;
}

    .message:empty {
        display: none;
    }

.ok {
    background-color: green;
    color: White;
}

.error {
    background-color: Red;
    color: White;
}

.warning {
    background-color: Orange;
    color: White;
}

.info {
    background-color: dodgerblue;
    color: White;
}


.right {
    text-align: right;
}

.divmainflex {
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}

.divmaincentered {
    height: 70vh;
    max-width: 20em;
    margin:0.5em;
}

.divcontent {
    padding: 1em;
    overflow: visible;
    background-color: White;
    border-radius: 0.3em;
}

.flx-cntnr-flx-just-cont-sp-btw {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .flx-cntnr-flx-just-cont-sp-btw > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-basis: 15em;
        flex-grow: 1;
    }

    .flx-cntnr-flx-just-cont-sp-btw > div > div {
        display: flex;
        padding: 0.3em 0.3em; 
    }

        .flx-cntnr-flx-just-cont-sp-btw > div > div input,select {
            width:100%;
        }

.flx-grow-2 {
flex-grow:2;
}

.div-row {
    padding: 0.3em 0.3em;
}

.block {
    display: block;
}

.selected {
    background-color: #c2dbff;
}

.header {
    font-size: 1.2em;
}

