﻿:root {
    --primary-color: #0D6CA2;
    --secondary-color: #0F5075;
    --accent-color: #003451;
    --bg-dark-color: #003451;
    --white: #FFFFFF;
    --off-white: #F4F8FB;
    --placeholder-color: #B8E1F9;
    --disabled-input: #D8D8D8;
    --font-dark-color: #2D2D2D;
    --font-disabled-color: #646464;
}

html, body {
    background-color: var(--off-white);
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--off-white);
    font-family: 'Sans-Serif', Arial, HelveticaNeue;
    font-size: 13px;
    color: var(--font-dark-color);
    line-height: 1.33em;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size-adjust: none;
    font-stretch: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

.page-wrapper {
    display: block;
}
/* Header Style */
header {
    background-color: var(--white);
    width: 100%;
}

.header-top {
    background: url("../Images/Login/header-bg.jpg") no-repeat;
    background-size: cover;
    height: 99px;
}

.header-middle {
    background-color: var(--bg-dark-color);
    height: 38px;
}

.header-top-content {
    width: 1020px;
    margin: 0 auto;
    text-align: left;
    padding-top: 13px;
}

.header-bottom {
    background-color: var(--white);
    height: 86px;
    border-bottom: 1px solid #c9c9c9;
}

.header-bottom-content {
    text-align: center;
    line-height: 86px;
}

    .header-bottom-content span.welcome {
        font-size: 20px;
        font-weight: 600;
        color: var(--font-dark-color);
    }

/* Container Style */
.container {
    width: 816px;
    margin: 0 auto;
}

.site-title {
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
}

.form-token,
.form-login {
    width: 320px;
    margin: 0 auto;
    box-sizing: content-box;
    padding: 10px;
}

.form-group {
    margin-bottom: 10px;
}

    .form-group label {
        display: inline-block;
        max-width: 100%;
        margin-bottom: 5px;
        font-weight: 600;
        font-size: 14px;
    }

.form-control {
    display: block;
    width: 98%;
    height: 32px;
    padding: 2px 1px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #555;
    background-color: var(--white);
    background-image: none;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    /*-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);*/
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

    .form-control:hover,
    .form-control:focus,
    .form-control:active {
        outline: none !Important;
        border: 1px solid #939393 !Important;
        /*-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);*/
        -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    }

    .form-control:disabled {
        color: var(--font-disabled-color) !important;
        background-color: var(--disabled-input);
    }

.form-errormessage {
    font-size: 11px;
    padding: 5px 0px;
    box-sizing: border-box;
    font-weight: bold;
}

/* Footer Style */
.push-footer {
    margin-bottom: 108px;
}

footer {
    width: 100%;
    margin: 0 auto;
    background-color: #434955;
    position: fixed;
    bottom: 0;
}

.footer-content {
    width: 816px;
    margin: 0 auto;
    line-height: 38px;
    height: 38px;
    color: var(--white);
}


/* Button Style */
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    text-transform: none;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-appearance: button;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--secondary-color);
}

.btn-primary:disabled {
    color: var(--font-disabled-color) !important;
    background-color: var(--disabled-input);
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary-color);
    border: 0;
    border-style: none;
}

.btn-block {
    width: 97%;
}

.btn-half {
    width: 48%;
}

.btn-save:first-letter {
    content: "Edit";
    text-transform: capitalize;
}

/* Global Style */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-bold {
    font-weight: bold;
}

.auto-width {
    width: auto;
    max-width: 500px;
    float: left;
    position: relative;
    font-family: arial, sans-serif, helvetica;
    font-size: 11px;
    padding: 3px 3px;
    background: var(--white);
    border-bottom: 1px double #b4b4b4;
    border-top: 1px double #b4b4b4;
    border-left: 1px double #b4b4b4;
    border-right: 1px double #b4b4b4;
    color: #0a0a0a;
    height: 27px;
}

.auto_width:focus {
    background: #fffceb;
    border-bottom: 1px double #8a8787;
    border-top: 1px double #8a8787;
    border-left: 1px double #8a8787;
    border-right: 1px double #8a8787;
    color: #0a0a0a;
}

/* Forced Style */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--white) inset;
}

    input:-webkit-autofill:hover,
    input:-webkit-autofill:active,
    input:-webkit-autofill:visited {
        -webkit-box-shadow: 0 0 0px 1000px var(--white) inset;
    }


/* End */
