html,
body {
    height: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.form-group {
    display: inline-block;
    margin: 15px 0;
    width: 100%;
}

body.login-page {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #FFF;
    color: #333333;
}

.login-left-bar {
    background: #fafafa;
    height: 100vh;
}

.form-signin {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: auto;
}

.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label-group>input {
    height: 3.125rem;
    padding: 1.25rem .75rem .25rem;
}

.form-label-group>label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    /* Override default `<label>` margin */
    line-height: 1.5;
    color: #495057;
    pointer-events: none;
    cursor: text;
    /* Match the input under the label */
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
    padding: .25rem .75rem;
    font-size: 12px;
    color: #777;
}

.form-label-group input::-webkit-input-placeholder {
    color: transparent;
}

.form-label-group input:-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-moz-placeholder {
    color: transparent;
}

.form-label-group input::placeholder {
    color: transparent;
}

.login-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #94d600;
    margin-bottom: 15px;
}

.login-content p {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.form-signin h3 {
    font-size: 24px;
    color: #2b6f8d;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-signin .btn-primary,
.form-signin .btn-primary:not(:disabled):not(.disabled).active,
.form-signin .btn-primary:not(:disabled):not(.disabled):active {
    border: 0px;
    background: #337ab7;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 20px;
    color: white;
}

.form-signin .btn-danger,
.form-signin .btn-danger:not(:disabled):not(.disabled).active,
.form-signin .btn-danger:not(:disabled):not(.disabled):active {
    border: solid 1px #D0D7DD;
    background: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 20px;
    color: #007DC0;
}

.form-signin a {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
}

.login-info {
    margin: 20px 0 0px;
}

.login-info h4 {
    font-size: 18px;
    font-weight: 700;
}

.login-info p {
    font-size: 14px;
    margin-bottom: 0px;
}

.login-menu {
    padding-left: 130px;
    margin-top: 3em;
    text-align: center;
}

.login-menu a {
    font-size: 14px;
    color: #333333;
    font-weight: 700;
}

.login-height {
    height: 100vh;
}

.brand-logo {
    position: absolute;
    right: 0px;
    margin: 10px;
}

.link-url {
    cursor: pointer;
    text-decoration: none;
}

#loading-spinner {
    display: none;
    background: rgba(255, 255, 255, 0.4);
    height: 100%;
    position: fixed;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
}

.loader.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
    border: 4px solid #CCC;
    border-radius: 50%;
    height: 48px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 48px;
}

.loader.spinning span:first-of-type {
    background-color: #337ab7;
    border-radius: 50%;
    display: block;
    height: 9px;
    margin: auto;
    width: 24px;
    position: absolute;
    top: -4px;
    right: 0;
    left: 0;
}

.loader.spinning span:last-of-type {
    background-color: #fff;
    border-radius: 50%;
    display: block;
    height: 40px;
    margin: auto;
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }
    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

.FormAlert {
    position: fixed;
    top: 15px;
    left: auto;
    width: 100%;
    z-index: 99999999;
    text-align: left;
    font-size: large;
    max-width: 390px;
    right: 20px;
    color: #000;
    background: #fff;
    box-shadow: 0 0 20px #696969;
    border: solid 1px transparent;
    font-weight: 400;
    box-shadow: 0 0 20px #9b9b9b;
    padding-left: 48px;
    line-height: 22px;
}

.FormAlert:before {
    position: absolute;
    left: 10px;
    font-family: "Font Awesome 6 Pro";
    font-size: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.FormAlert.alert-danger {
    border-color: #dd4b39;
    color: #dd4b39 !important;
    background: #ffeae8 !important;
}

.FormAlert.alert-danger:before {
    content: "\f057";
}

.FormAlert.alert-success {
    border-color: #00a65ab0;
    color: #00a65ab0 !important;
    background: #eefff7 !important;
}

.FormAlert.alert-success:before {
    content: "\f058";
}

.FormAlert.alert-warning {
    border-color: #ffa500ff;
    color: #ffa500ff !important;
    background: #fffbf4 !important;
}

.FormAlert.alert-warning:before {
    content: "\f06a";
}

.modal-footer {
    display: inline-block;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.modal a,
.modal h1,
.modal h2,
.modal h3,
.modal h4 {
    color: #2b6f8d;
}

.text-primary {
    color: #2b6f8d !important;
}

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
    .form-label-group>label {
        display: none;
    }

    .form-label-group input::-ms-input-placeholder {
        color: #777;
    }
}

/* Fallback for IE
-------------------------------------------------- */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .form-label-group>label {
        display: none;
    }

    .form-label-group input:-ms-input-placeholder {
        color: #777;
    }
}

@media (max-width:767px) {
    body.login-page {
        display: inherit;
        padding: 0px;
    }

    .brand-logo {
        left: 0;
        right: 0;
        margin: 15px auto;
        position: relative;
    }

    .login-menu {
        padding: 0px 15px;
    }

    .login-height {
        height: auto;
    }
}
