﻿
.logo {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.headerFont {
    color: var(--light);
    font-size: 1.75rem;
}

.footerFont {
    color: var(--light);
    font-size: 0.75rem;
}

.heading-section {
    display: none;
}

button:disabled,
button[disabled] {
    cursor: not-allowed !important;
}

.left-panel {
    display: grid;
    height: 100%;
    align-content: center;
    color: #FFF;
}

.theme-line1 {
    width: 100%;
    height: 2px;
    height: 6px;
    display: block;
    background-color: #012B72;
}

.theme-line2 {
    width: 100%;
    height: 2px;
    height: 6px;
    display: block;
    background-color: #00b9f5;
}

/*Custom Scrollbar*/

.scrollStyle::-webkit-scrollbar-track {
    border: none;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollStyle::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #f1f1f1;
}

.scrollStyle::-webkit-scrollbar-thumb {
    background-color: #bdbdbd;
    border-radius: 10px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .flex-container > div {
        /*background-color: #f1f1f1;
        background: rgb(255,235,244);
        background: linear-gradient(145deg, rgba(255,235,244,1) 0%, rgba(217,234,255,1) 100%);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 4px 4px rgba(108, 117, 125, 0.2);*/
        font-size: 16px;
        margin: 10px;
        /*width: 220px;*/
        text-align: center;
        font-weight: bold;
        transition: transform 1s;
        color: var(--primary-color);
    }

        .flex-container > div:hover {
            -ms-transform: scale(1.1); /* IE 9 */
            -webkit-transform: scale(1.1); /* Safari 3-8 */
            transform: scale(1.1);
            background: #cbeaff;
            cursor: pointer;
            /*background-image: linear-gradient(to right, #b6fbff, #83a4d4);*/
            /*background-image: linear-gradient(90deg, #FAD961 0%, #F76B1C 100%);*/
            background-image: linear-gradient(90deg, #ffedad 0%, #ffc9a9 100%);
            box-shadow: none;
        }

#container {
    position: absolute;
    /*top: 200px;*/
    bottom: 30px;
    left: 0px;
    right: 0px;
    overflow: auto;
    /*padding: 50px;*/
    overflow-x: hidden;
}


@media (max-width: 1024px) {
    .headerFont {
        display: none;
    }

    .heading-section {
        display: block;
    }

    .navbar > .container, .navbar > .container-fluid {
        display: grid;
        /*justify-content: center;*/
        width: 100%;
        grid-auto-flow: column;
    }

    .navbar-brand {
        margin-right: 0px;
    }
}

.txtGradient {
    background: var(--txt-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.wrap {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
}

.img, .login-wrap {
    width: 50%;
}

@media (max-width: 991.98px) {
    .img, .login-wrap {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .wrap .img {
        height: 250px;
    }
}

.login-wrap {
    position: relative;
    background: #fff;
}
