﻿
:root {
    --sh-dark-blue: #022140;
    --sh-bg-white: #fff;
    --sh-light-blue: #143455;
    --sh-gray-text: #606060;
    --sh-sky-blue: #6BB5FF;
    --sh-active-bg: rgba(0, 103, 200, 0.7);
}
.page.login-bg {
    /*    background: #f1f1f1;*/
    background: var(--sh-active-bg);
}

.text-primary {
    color: #8e54e9 !important;
    opacity: 1;
}

a {
    text-decoration: none;
}

.text-justify {
    text-align: justify;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}



.form-label {
    font-size: .8rem;
    font-weight: 500;
}

.form-control-lg {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #f0f0f0;
    background-color: #fff;
    box-shadow: 0 0.0625rem 0.125rem 0 rgba(0,0,0,.05);
    color: #1b2c3f;
}

.card.custom-card {
    box-shadow: 0 1rem 2.1rem rgba(0,0,0,.05);
    border: 0;
    border-radius: 0.4rem;
    position: relative;
    margin-block-end: 1.5rem;
    width: 100%;
}

.text-fixed-white {
    color: #fff !important;
}

.cover-background:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    inset-block-start: 0;
    inset-block-end: 0;
    /*    background-color: rgb(142 84 233 / 80%);*/
    background-color: var(--sh-sky-blue);
    z-index: -1;
}

.cover-background {
    background-image: url(https://spruko.com/demo/velvet/velvet/dist/assets/images/authentication/4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.login-page, .error-page-basic {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .login-page .btn.btn-lg.btn-primary {
/*        background: rgb(142,84,233);
        border-color: rgb(142,84,233);*/
    }

@media (min-width: 574px) {
    .rectangle2::before {
        content: "";
        width: 130px;
        height: 130px;
        position: absolute;
        background: #8e54e91a;
        top: -13%;
        z-index: -1;
        border-radius: 10px;
        left: -4%;
        opacity: .4;
    }

    .rectangle2::after {
        content: "";
        width: 130px;
        height: 130px;
        position: absolute;
        background-color: transparent;
        border: 0.125rem dashed rgb(142 84 233 / 30%);
        top: -5%;
        z-index: -1;
        border-radius: 10px;
        left: -7%;
        opacity: .4;
    }
}



/* PRELOADER CSS */
.page-loader {
    width: 100%;
    height: 100vh;
    position: absolute;
    background: #272727;
    z-index: 1000;
}

.page-loader .txt {
        color: #666;
        text-align: center;
        top: 40%;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.3rem;
        font-weight: bold;
        line-height: 1.5;
}

/* SPINNER ANIMATION */
.spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #03067b;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: relative;
    top: 35%;
    margin: 0 auto;
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.btn-primary {
    background: var(--sh-dark-blue);
    border-color: var(--sh-dark-blue);
    color: var(--sh-bg-white);
    font-weight: 500;
    font-size: 0.875rem;
}

    .btn-primary:hover, .btn-primary:active, .btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
        background: var(--sh-light-blue);
        border-color: var(--sh-light-blue);
        color: var(--sh-bg-white);
    }

.btn-outline-primary {
    background: transparent;
    border-color: var(--sh-dark-blue);
    color: var(--sh-dark-blue);
    font-weight: 500;
    font-size: 0.875rem;
}

    .btn-outline-primary:hover,
    .btn-outline-primary:active,
    .btn-check:checked + .btn,
    .btn.active,
    .btn.show,
    .btn:first-child:active,
    :not(.btn-check) + .btn:active {
        background: var(--sh-dark-blue);
        color: var(--sh-bg-white);
        border-color: var(--sh-dark-blue);
    }