﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI",Arial,sans-serif;
    background: #EEF3F8;
    color: #2E3A46;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/*==========================
    HEADER
==========================*/

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    background: linear-gradient(90deg,#163A5F,#255482);
    border-bottom: 4px solid #F4C542;
    position: relative;
    z-index: 10;
    box-shadow: 0 3px 12px rgba(0,0,0,.15);
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

.logo-img {
    height: 35px;
}
.help-link {
    position: absolute;
    right: 100px;
    top: 25px;
    font-size:18px;
    /*font-weight:bold;*/
}
nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
}

    nav a:hover {
        color: #F4C542;
    }

    
/*==========================
MAIN
==========================*/
.mainDiv {
    width: 90%;
    margin: auto;
}

.main {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 140px);
    padding: 29px 0;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/*==========================
LEFT PANEL
==========================*/

.hero {
    flex: 1;
}

.tag {
    display: inline-block;
    background: #255482;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 40px;
    line-height: 65px;
    color: #1E2B3C;
    margin-bottom: 20px;
    font-weight: 700;
}

    .hero h1 span {
        color: #255482;
    }

.hero p {
    font-size: 19px;
    color: #64748B;
    line-height: 34px;
    max-width: 650px;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #334155;
}

.icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F4C542;
    color: #255482;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/*==========================
LOGIN CARD
==========================*/

.login-card {
    width: 420px;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    position: relative;
    z-index: 5;
}
.logView {
    background: none repeat scroll 0 0 #76B8FF !important;
    height: 100% !important;
}

.logInHead {
    display:flex;
    align-items:center;
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

    .login-header h2 {
        color: #255482;
        font-size: 32px;
        margin-bottom: 8px;
    }

    .login-header p {
        color: #64748B;
        font-size: 20px;
    }

.form-group {
    margin-bottom: 22px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #374151;
        font-weight: 600;
    }

    .form-group input,
    .form-group select{
        width: 100%;
        height: 48px;
        border: 1px solid #D7DEE7;
        border-radius: 8px;
        padding: 0 15px;
        font-size: 15px;
        background: #fff;
        transition: .3s;
    }

        .form-group input:focus,
        .form-group select:focus{
            outline: none;
            border-color: #F4C542;
            box-shadow: 0 0 8px rgba(244,197,66,.35);
        }

.remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 30px;
}

    .remember-row a {
        color: #255482;
        text-decoration: none;
    }

        .remember-row a:hover {
            color: #F4C542;
        }

.btn-login {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: #255482;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .btn-login:hover {
        background: #163A5F;
        transform: translateY(-2px);
    }

/*==========================
FOOTER
==========================*/

footer {
    background: #fff;
    border-top: 1px solid #D9E2EC;
    padding: 18px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748B;
    font-size: 14px;
}

    .footer-content a {
        margin-left: 20px;
        text-decoration: none;
        color: #255482;
    }

        .footer-content a:hover {
            color: #F4C542;
        }

/*==========================
BACKGROUND SHAPES
==========================*/

.circle {
    position: fixed;
    border-radius: 50%;
    z-index: 0;
    overflow: hidden;
   object-fit: cover;
}
.circle img{
    width:100%;
    height: 100%;
    opacity: .2;
    object-fit: cover;
    object-position: 60% center;
}

.one {
    width: 450px;
    height: 450px;
    left: -180px;
    top: 150px;
    background: rgba(37,84,130,.06);
}

.two {
    width: 350px;
    height: 350px;
    right: -120px;
    top: 100px;
    background: rgba(244,197,66,.12);
}

.three {
    width: 500px;
    height: 500px;
    right: -220px;
    bottom: -220px;
    background: rgba(37,84,130,.05);
}
/*==========================
FORGOT PWD
==========================*/
.silBorder {
    background: #F4C542;
    height: 1px;
    margin: 3px 0 13px 7px;
    width: 364px;
}

.key {
    background: url("../images/Login/key.png") no-repeat scroll 0 0 transparent;
    color: #5A595A;
    font-family: calibri;
    font-size: 19px;
    height: 36px;
    margin-left: 10px;
    padding-left: 30px;
    padding-top: 5px;
    width:auto;
}
.keepSign {
    color: #5A595A;
    font-size: 15px;
    margin-left: 6px;
    margin-top: 0;
}
.FL {
    float: left;
}
.FR {
    float: right;
    margin-left: 218px;
}
.tdtext {
    color: #5A595A;
    font-size: 15px;
    width :18%;
}
/*/*/
.txtBox {
    background: none repeat scroll 0 0 #ffffff;
    border: 1px solid #D7DEE7;
    border-radius: 8px;
    height: 40px;
    width: 250px;
    font-size: 15px;
}
    /*
.txtBox {
    width: 100%;
    height: 25px;
    border: 1px solid #D7DEE7;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
    background: #fff;
    transition: .3s;
}*/

    .txtBox:focus {
        outline: none;
        border-color: #F4C542;
        box-shadow: 0 0 8px rgba(244,197,66,.35);
    }
.ForgotPasswordButton {
    padding: 8px 13px 10px 13px;
    border: none;
    border-radius: 8px;
    background: #255482;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    float:left;
    margin-left: 5px;
}
    .ForgotPasswordButton.btncancel {
        background: #F4C542;
        color: #473800;
    }
.forgot-Pwd {
    display: none;
    position: absolute !important;
    background-color: #fff;
    border: 1px solid #cccccc;
    height: 271px;
    width: 485px;
    z-index: 100;
    border-radius: 18px;
}
.ForgotPasswordButton:hover {
    background: #163A5F;
    transform: translateY(-2px);
    color: #fff;
}
.req {
    background: url("../images/Login/redstar.png") no-repeat scroll 0 0 transparent;
    height: 9px;
    width: 9px;
}
.signContent {
    padding: 15px 30px;
    margin-top:33px;
}
.signDesc {
    background: url("../images/Login/shade5.png") no-repeat scroll center bottom transparent;
    padding-bottom: 17px;
}

.signInButton {
    background: url("../images/Login/signIn.png") no-repeat scroll center bottom transparent;
    width: 97px;
    height: 28px;
    color: #FFF;
    cursor: pointer;
}
/*.clear
{
    clear: both;
}*/
/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px) {

    .content-wrapper {
        flex-direction: column;
    }

    .hero {
        text-align: center;
    }

        .hero p {
            margin: auto auto 40px;
        }

    .features {
        grid-template-columns: 1fr;
    }

    .login-card {
        width: 100%;
        max-width: 450px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        display: none;
    }
}
/************** Multi Userr Pop UP *******************/

.MpopupbackCover {
    visibility: hidden;
    margin-top: -700px;
    height: 1000px;
    width: 100%;
    position: fixed;
    background-color: #000;
    opacity: 0.4;
    z-index: 9999999;
}

.MpopUpCover {
    visibility: hidden;
    position: absolute;
    height: 100px;
    width: 400px;
    background-color: #333;
    float: left;
    z-index: 99999999;
    margin-top: -400px;
    margin-left: 500px;
    box-shadow: 10px 10px 5px #000;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.MpopUpToptext {
    width: 375px;
    margin: 10px 20px 10px 20px;
    float: left;
    color: #000;
    font-size: 16px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    background-color: #ccc;
    top: -5px;
    margin-left: -0px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 25px;
}

.MpopUpMidText {
    height: 30px;
    width: 200px;
    color: #fff;
    font-size: 16px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    margin-left: 90px;
    float: left;
    padding-top: 10px;
}

.MpopupNoButton {
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    background-color: Blue;
    color: #fff;
    font-weight: bold;
    float: left;
    padding: 10px 13px 10px 13px;
    cursor: hand;
    cursor: pointer;
}

    .MpopupNoButton:hover {
        background-color: #fff;
        color: #000;
    }

.MpopupYesButton {
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    background-color: green;
    color: #fff;
    font-weight: bold;
    float: left;
    margin-left: 5px;
    cursor: hand;
    cursor: pointer;
}

    .MpopupYesButton:hover {
        background-color: #fff;
        color: #000;
    }

/* password expiry */

.PpopupbackCover {
    visibility: hidden;
    margin-top: -700px;
    height: 1000px;
    width: 100%;
    position: fixed;
    background-color: #fff;
    opacity: 0.1;
    z-index: 9999999;
}

.ppopupmaincover {
    visibility: hidden;
    position: absolute;
    height: 100px;
    width: 400px;
    background-color: #333;
    float: left;
    z-index: 99999999;
    margin-top: -400px;
    margin-left: 470px;
    box-shadow: 10px 10px 5px #000;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.popupHeading {
    height: 50px;
    width: 400px;
    float: left;
    color: #fff;
    font-size: 16px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    padding: 6px 0px 3px 8px;
}

.ppopupClose {
    width: 30px;
    height: 30px;
    float: left;
    margin-top: -59px;
    margin-left: 370px;
    cursor: hand;
    cursor: pointer;
}

.ppopupinnerCover {
    float: left;
    height: 65px;
    width: 400px;
    margin-top: -30px;
    background-color: #fff;
}

.ppopupinnertext {
    margin-top: 23px;
    float: left;
    height: 20px;
    width: auto;
    color: #333;
    margin-left: 10px;
}

.ppopupWarning {
    width: 24px;
    height: 24px;
    float: left;
    margin-left: 40px;
    margin-top: 17px;
}

.cntStyle {
    color: Red;
    font-weight: bolder;
}


