﻿:root {
    --text-primary-color: #151948;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.content-pd {
    padding: 0 15px;
}

.grants-container .page-header {
    margin-bottom: 20px;
}

.grants-container .grant-item {
    background: transparent linear-gradient(180deg, #FFD500 0%, #FFAA00 100%) 0% 0% no-repeat padding-box;
    box-shadow: 1px 2px 2px #00000012;
    border-radius: 5px;
    padding: 20px;
    color: white;
    text-align: center;
    display: block;
    text-decoration: none;
    position: relative;
}

    .grants-container .grant-item::after {
        content: '';
        display: block;
        height: 10px;
        background: #F6AB00 0% 0% no-repeat padding-box;
        border-radius: 0px 0px 5px 5px;
        width: 100%;
        position: absolute;
        bottom: -5px;
        left: 0;
    }

    .grants-container .grant-item .name {
        font-size: 20px;
        font-weight: bold;
    }

    .grants-container .grant-item .sub-name {
        font-size: 16px;
        text-transform: uppercase;
    }

    .grants-container .grant-item.no-permission {
        background: #E3F0FC;
        color: var(--text-primary-color);
    }

        .grants-container .grant-item.no-permission::after {
            content: '';
            display: block;
            height: 10px;
            background: #E0EDF8 0% 0% no-repeat padding-box;
            border-radius: 0px 0px 5px 5px;
            width: 100%;
            position: absolute;
            bottom: -5px;
            left: 0;
        }
/*login*/
.login-page {
    background: #F0F3F7 0% 0% no-repeat padding-box;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#login-background-left {
    height: 100vh;
    overflow: hidden;
    padding-left: 0 !important;
}

    #login-background-left img {
        width: 100%
    }

#login-right {
    margin: auto;
    width: 700px;
}

.login-body {
    display: flex;
    width: 100%;
    height: 90%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#login-form {
    width: 60%;
}

.copyright {
    color: #00000073;
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
}

.input-group .input-group-text {
    background: white !important;
    border-right: none !important;
}

    .input-group .input-group-text i {
        color: #188FFC;
    }

.input-group .form-control {
    border-left: none !important;
}

input:focus {
    box-shadow: none !important;
    outline: 0 none !important;
}

#lblRemember {
    color: #151948;
}

/*header bar*/
.header-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0px 3px 6px var(---eaedf3-stroke);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #EAEDF3;
    opacity: 1;
    height: 70px;
    align-items: center;
}

    .header-bar .user-login-container {
        display: flex;
    }

    .header-bar .logo {
        max-height: 40px;
        max-width: 136px;
    }

    .header-bar .user-login-icon {
        margin-right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
    }


/*footer*/
.footer {
    text-align: center;
    padding: 15px;
    margin-top: auto;
    color: #00000073;
}
