:root {
    --up-orange: lightcoral;
    --up-navy: #002147;
    --light-bg: #f8fafc;
    --footer-dark: #0a0a0a;
    --footer-teal: teal;
}


* {
    margin: 0px;
    font-family: Rubik;
}

.LoginPageContainer {
    height: 100vh;
    /*overflow: auto;*/
}

.LoginPageInnerContainer {
    display: flex;
    min-height: 100%;
}

    .LoginPageInnerContainer .ImageContianer {
        background-color: #000508;
        min-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .LoginPageInnerContainer .ImageContianer .GroupImage {
            width: 100%;
            display: block;
        }

    .LoginPageInnerContainer .LoginFormContainer {
        flex-grow: 2;
        background-color: floralwhite;
        min-height: 100%;
        padding: 5%;
        background: url('~/Content/Images/Vidhansabha1.jpg') no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

        .LoginPageInnerContainer .LoginFormContainer .LogoContainer .logo {
            height: 60px;
            margin-bottom: 30px;
        }

        .LoginPageInnerContainer .LoginFormContainer .header {
            font-size: 32px;
            font-weight: 500;
        }

        .LoginPageInnerContainer .LoginFormContainer .subHeader {
            color: #02d9ee;
            margin-top: 5px;
            margin-bottom: 40px;
        }

        .LoginPageInnerContainer .LoginFormContainer .inputContainer {
            color: #3f3f45;
            margin: 20px 0px;
        }

            .LoginPageInnerContainer .LoginFormContainer .inputContainer .label {
                display: flex;
                width: 100%;
                justify-content: flex-start;
                align-items: center;
                margin-right: 7px;
                margin-bottom: 10px;
            }

                .LoginPageInnerContainer .LoginFormContainer .inputContainer .label .labelIcon {
                    width: 20px;
                    margin-right: 10px;
                    display: block;
                }

            .LoginPageInnerContainer .LoginFormContainer .inputContainer .input {
                display: block;
                width: calc(100% - 20px);
                font-size: 15px;
                padding: 10px;
                border: 1px solid #d6d7db;
                border-radius: 5px;
                margin-top: 5px;
                outline: 0px !important;
            }

        .LoginPageInnerContainer .LoginFormContainer .OptionsContainer {
            display: flex;
            justify-content: space-between;
        }

.LoginFormContainer {
    display: flex;
    align-items: center;
}

.LoginFormInnerContainer {
    max-width: 500px;
}

.LoginPageInnerContainer .LoginFormContainer .checkbox {
    width: 15px;
    height: 15px;
    margin: 0px;
    display: block;
    border: 1px solid #d6d7db;
}

.LoginPageInnerContainer .LoginFormContainer .checkboxContainer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .LoginPageInnerContainer .LoginFormContainer .checkboxContainer label {
        display: block;
        padding: 0px 5px;
        color: #9aa4ad;
    }

.LoginPageInnerContainer .LoginFormContainer .ForgotPasswordLink {
    color: #e7483b;
    text-decoration: none;
}

.LoginFormContainer .LoginFormInnerContainer .LoginButton {
    margin-top: 30px;
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    font-weight: bold;
    color: white;
    background-color: #002147;
    border: 0px;
    outline: 0px;
    cursor: pointer;
}

    .LoginFormContainer .LoginFormInnerContainer .LoginButton:active {
        background-color: #00cccd;
    }


@@media only screen and (max-width: 1200px) {
    .LoginPageInnerContainer .ImageContianer {
        width: 50%;
    }
}

@@media only screen and (max-width: 800px) {
    .LoginPageInnerContainer .ImageContianer {
        display: none;
    }

    .LoginFormContainer {
        justify-content: center;
    }
}

.LoginPageContainer::-webkit-scrollbar {
    width: 5px;
}

.LoginPageContainer::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.LoginPageContainer::-webkit-scrollbar-thumb {
    background: #2e1f7a;
}

    .LoginPageContainer::-webkit-scrollbar-thumb:hover {
        background: whitesmoke;
    }

#NavBar {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px;
    justify-content: center;
}


    #NavBar a {
        color: white;
        text-decoration: none;
        padding: 8px 16px;
        background-color: #002147;
        border-radius: 4px;
        white-space: nowrap;
    }

        #NavBar a:hover {
            color: red;
        }

.swal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}


.LogoContainer {
    display: flex;
    justify-content: center;
}

    .LogoContainer img {
        height: 100px;
    }


.footer-top {
    /*background: linear-gradient(45deg, lightcoral, #002147);*/
    background: url('/content/images/9.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: #e2e8f0;
    padding: 70px 0 30px;
    border-top: 3px solid #f08080;
    border-bottom: 2px solid white;
    margin-top: auto;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: var(--up-orange);
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links a {
        color: #f4f8fd;
        text-decoration: none;
        font-size: 0.95rem;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: var(--up-orange);
            padding-left: 5px;
        }

.footer-bottom {
    background: #002147;
    color: #f4f8fd;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid #222;
}


.navbar-custom .nav-link:hover {
    color: var(--up-orange) !important;
    background: rgba(255,255,255,0.05);
}
