﻿      :root {
            --cream-bg: #f2efe6;
            --card-bg: #ffffff;
            --ink: #2b2b25;
            --deep-green: #1e3d33;
            --muted-gray: #7a7a72;
            --border-soft: #e2ded1;
            --gold: #c9a24b;
        }

        body#LoginForm {
            background-color: var(--cream-bg);
            min-height: 100vh;
            font-family: 'Inter', "Oswald", sans-serif;
            position: relative;
            overflow-x: hidden;
        }

            /* soft decorative circle in the corner, echoing the reference design */
            body#LoginForm:before {
                content: "";
                position: fixed;
                top: -180px;
                left: -180px;
                width: 420px;
                height: 420px;
                border: 1px solid rgba(43,43,37,0.08);
                border-radius: 50%;
                pointer-events: none;
            }

        .site-header {
            text-align: center;
            padding: 48px 20px 20px 20px;
        }

        .seal {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            border: 1px solid var(--deep-green);
            margin: 0 auto 18px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg);
        }

            .seal img {
                width: 100px;
                height: 100px;
                object-fit: contain;
            }

            .seal span {
                font-family: 'Cormorant Garamond', serif;
                font-size: 10px;
                letter-spacing: 0.5px;
                color: var(--deep-green);
                line-height: 1.2;
                text-align: center;
            }

        .site-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 40px;
            letter-spacing: 4px;
            color: var(--deep-green);
            margin: 0 0 8px 0;
            text-transform: uppercase;
        }

        .site-subtitle {
            font-size: 13px;
            color: var(--muted-gray);
            letter-spacing: 0.2px;
            margin: 0 0 18px 0;
        }

        .site-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            max-width: 340px;
            margin: 0 auto;
        }

            .site-divider .line {
                flex: 1;
                height: 1px;
                background: var(--gold);
                opacity: 0.6;
            }

            .site-divider .dot {
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--gold);
            }

        .form-heading {
            color: #fff;
            font-size: 23px;
        }

        .panel h2 {
            color: var(--deep-green);
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 26px;
            letter-spacing: 0.5px;
            margin: 0 0 6px 0;
        }

        .panel p {
            color: var(--muted-gray);
            font-size: 13px;
            margin-bottom: 15px;
            line-height: 22px;
        }

        .login-form .form-control {
            background: #faf8f2 none repeat scroll 0 0;
            border: 1px solid var(--border-soft);
            border-radius: 6px;
            font-size: 13px;
            height: 42px;
            line-height: 42px;
            color: var(--ink);
        }

            .login-form .form-control::placeholder {
                text-transform: uppercase;
                letter-spacing: 0.3px;
                color: #b9b6a9;
                font-size: 11px;
            }

        .main-div {
            background: var(--card-bg) none repeat scroll 0 0;
            border-radius: 10px;
            margin: 0 auto 30px;
            max-width: 520px;
            padding: 34px 45px 34px 45px;
            box-shadow: 0px 10px 30px rgba(43, 43, 37, 0.08);
            border: 1px solid var(--border-soft);
        }

        .login-form .row {
            margin-left: -6px;
            margin-right: -6px;
        }

            .login-form .row > [class^="col-"] {
                padding-left: 6px;
                padding-right: 6px;
            }

        .login-form .form-group {
            margin-bottom: 10px;
        }

        .login-form {
            text-align: center;
            padding: 0 20px;
        }

        .forgot a {
            color: #777777;
            font-size: 14px;
            text-decoration: underline;
        }

        .login-form .btn.btn-primary {
            background: var(--deep-green) none repeat scroll 0 0;
            border-color: var(--deep-green);
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.3px;
            width: 100%;
            height: 48px;
            border-radius: 6px;
            line-height: 48px;
            padding: 0;
            cursor: pointer;
            transition: background 0.2s ease;
        }

            .login-form .btn.btn-primary:hover {
                background: #16302a;
                border-color: #16302a;
            }

        .forgot {
            text-align: left;
            margin-bottom: 30px;
            text-align: center;
            margin-top: 5px;
        }

        .botto-text {
            color: #ffffff;
            font-size: 14px;
            margin: auto;
        }

        .login-form .btn.btn-primary.reset {
            background: #ff9900 none repeat scroll 0 0;
        }

        .back {
            text-align: left;
            margin-top: 10px;
        }

            .back a {
                color: #444444;
                font-size: 13px;
                text-decoration: none;
            }

        header {
            width: 100%;
            height: 70px;
            overflow: hidden;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
            background-color: #0683c9;
            -webkit-transition: height 0.3s;
            -moz-transition: height 0.3s;
            -ms-transition: height 0.3s;
            -o-transition: height 0.3s;
            transition: height 0.3s;
            display: none; /* legacy top bar replaced by .site-header */
        }

            header h1#logo {
                display: inline-block;
                height: 150px;
                line-height: 150px;
                float: left;
                font-family: "Oswald", sans-serif;
                font-size: 60px;
                color: white;
                font-weight: 400;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s;
            }

            header nav {
                display: inline-block;
                float: right;
            }

                header nav a {
                    line-height: 150px;
                    margin-left: 20px;
                    color: #9fdbfc;
                    font-weight: 700;
                    font-size: 18px;
                    -webkit-transition: all 0.3s;
                    -moz-transition: all 0.3s;
                    -ms-transition: all 0.3s;
                    -o-transition: all 0.3s;
                    transition: all 0.3s;
                }

                    header nav a:hover {
                        color: white;
                    }

            header.smaller {
                height: 75px;
            }

                header.smaller h1#logo {
                    width: 150px;
                    height: 75px;
                    line-height: 75px;
                    font-size: 30px;
                }

                header.smaller nav a {
                    line-height: 75px;
                }

        .logo {
            display: block;
            width: 45%;
            text-align: center;
            margin: 0 auto;
            margin-left: 0%;
            margin-top: 1%;
        }

        .footer {
            bottom: 0;
            position: relative;
            background: transparent;
            display: block;
            width: 100%;
            padding: 24px 20px 30px 20px;
        }

            .footer strong {
                color: var(--muted-gray);
                font-size: 12px;
                font-weight: 400;
                display: block;
                text-align: center;
                width: 100%;
                margin: 0 auto;
            }

            .footer a {
                color: var(--deep-green);
            }

        .main-div .panel img {
            width: auto;
            height: 0;
            margin-bottom: 0;
            display: none; /* replaced by top-level .seal */
        }

        .error-msg {
            display: block;
            color: #b3413a;
            font-size: 13px;
            width: 100%;
            text-align: center;
        }

        html {
            box-shadow: none;
        }

        .reglbl {
            display: block;
            width: 100%;
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
            margin-left: 2px;
            color: var(--ink);
        }

        .note-text {
            font-size: 12px;
            color: var(--muted-gray);
            text-align: center;
            margin-top: 16px;
            line-height: 20px;
        }

        @media (min-width: 320px) and (max-width: 480px) {
            .main-div {
                background: var(--card-bg) none repeat scroll 0 0;
                border-radius: 10px;
                margin: 0 auto 30px;
                max-width: 92%;
                padding: 24px 24px 28px 24px;
                box-shadow: 0px 10px 30px rgba(43, 43, 37, 0.08);
            }

            .site-title {
                font-size: 26px;
                letter-spacing: 2px;
            }

                .main-div .panel img {
                    width: auto;
                    height: 60px;
                    margin-bottom: 15px;
                }

            .panel h2 {
                color: var(--deep-green);
                font-size: 20px;
                margin: 0 0 8px 0;
            }

            .panel p {
                color: var(--muted-gray);
                font-size: 12px;
                margin-bottom: 20px;
                line-height: 18px;
            }

            .login-form .form-control {
                background: #faf8f2 none repeat scroll 0 0;
                border: 1px solid var(--border-soft);
                border-radius: 6px;
                font-size: 13px;
                height: 40px;
                line-height: 40px;
            }

            .forgot {
                text-align: left;
                margin-bottom: 15px;
                text-align: center;
                margin-top: 5px;
            }

                .forgot a {
                    color: #777777;
                    font-size: 12px;
                    text-decoration: underline;
                }

            .error-msg {
                display: block;
                color: #b3413a;
                font-size: 11px;
                width: 100%;
                text-align: center;
            }
        }

        select option {
            padding: 10px;
        }

        .select2-container--default .select2-selection--single {
            background-color: #fff;
            border: none;
            border-radius: 0;
        }

            .select2-container--default .select2-selection--single .select2-selection__rendered {
                background: #faf8f2 none repeat scroll 0 0;
                border: 1px solid var(--border-soft);
                border-radius: 6px;
                font-size: 13px;
                height: 36px;
                color: #929191;
                padding-left: 13px;
                line-height: 30px;
                text-align: left;
            }

        .select2-results__option[aria-selected] {
            cursor: pointer;
            font-size: 13px;
            background: #f7f7f7;
        }

        .select2-search--dropdown {
            background: #f7f7f7;
        }

        .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background-color: var(--deep-green);
            color: white;
        }

        .top-logo {
            width: 50%;
            margin-top: 3%;
        }

        .navbar-brand {
            color: #bbe2ff;
            border-bottom: 0px;
            width: 783px;
            height: 45px;
            margin: 5px 0 10px 40px;
            text-indent: -9999px;
            background: url(../../images/logocu.png) left center no-repeat;
            background-size: contain;
        }

        .main-header .navbar {
            background-color: transparent;
            display: none; /* replaced by .site-header */
        }

        input.form-control {
            line-height: 0 !important;
        }

        .modalProgress {
            position: fixed;
            z-index: 1999;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.61);
        }

        .center {
            z-index: 1999;
            margin: 250px auto;
            padding: 10px;
            width: 130px;
            opacity: 1;
            -moz-opacity: 1;
        }

            .center img {
                height: 128px;
                width: 128px;
            }


        /* ALL LOADERS */

        .loader {
            width: 100px;
            height: 100px;
            border-radius: 100%;
            position: relative;
            margin: 0 auto;
        }

        /* LOADER 1 */

        #loader-1:before, #loader-1:after {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            width: 100%;
            height: 100%;
            border-radius: 100%;
            border: 10px solid transparent;
            border-top-color: var(--gold);
        }

        #loader-1:before {
            z-index: 100;
            animation: spin 1s infinite;
        }

        #loader-1:after {
            border: 10px solid #e2ded1;
        }

        @keyframes spin {
            0% {
                -webkit-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
            }

            100% {
                -webkit-transform: rotate(360deg);
                -ms-transform: rotate(360deg);
                -o-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }

        .margin-top-13 {
            margin-top: 13%;
        }

        .top_heading {
            display: none; /* replaced by .site-title */
        }

        .top_logo {
            display: none; /* replaced by .seal */
        }
    