@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
html,body{
    width: 100%;
    height: 100%;
    background-color: #e8e7e7;
    /* font-family: "Inter", sans-serif; */
}
#main{
    min-height: 100vh;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
}
p{
    margin: 0;
}
a{
    text-decoration: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*--------------------------------------------------------------
# Navigation Menu Started
--------------------------------------------------------------*/

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        gap: 6px;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #262626;
        padding: 8px 8px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 15px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        background: #e4b236;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}
/*--------------------------------------------------------------
# Navigation Menu Ended
--------------------------------------------------------------*/

/* TableWrapperDiv Started  */

.ConsumrTableDiv{
    max-height: 360px;
    overflow-y: auto;
}
.ConsumrTableDiv thead th {
  position: sticky;
  top: 0;  
}
.TableWrapperDiv{
    margin: 0;
}
.TableWrapperDiv thead {
    vertical-align: middle;
} 
.TableWrapperDiv thead tr th {
   background: #49b653;
   text-align: center;
   font-size: 16px;
   font-weight: 600;
} 
.TableWrapperDiv tbody tr td {
   background: #f5f5f5;
   text-align: center;
   font-size: 16px;
   font-weight: 500;
   color: #262626b0;
}
.TableWrapperDiv tbody tr td :is( a , button) {
   background: #2c3763;
   border: none;
   color: #fff;
   border-radius: 8px;
   padding: 4px 8px;
   font-size: 13px;
   border: none;
   line-height: 0;
}

/* TableWrapperDiv Ended  */





.MainSignSection{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.MainSignSection .SignCardDiv{
    width: 800px;
    height: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0px 7px 7px 2px #00000047;
    position: relative;
    padding: 40px;
    display: grid;
    grid-template-rows: auto 1fr auto; 
    align-items: center;
}
.MainSignSection .SignCardDiv .DataLogo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.MainSignSection .SignCardDiv .DataLogo img{
    width: 100%;
    max-width: 250px;
    height: auto;
}
.MainSignSection .SignCardDiv .SignForm {
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.MainSignSection .SignCardDiv .SignForm form#loginForm{
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 50px;
}
.MainSignSection .SignCardDiv .SignForm form#loginForm :is(.FormControl input , .FormControlPassword input),
.MainSignSection .SignCardDiv .SignForm #forgotForm input,
.MainSignSection .SignCardDiv .SignForm #resetPasswordForm input[type="password"] {
    width: 100%;
    min-height: 65px;
    border: 1px solid #cdcdcd;
    outline: none;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: none !important;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.2px;
}

.MainSignSection .SignCardDiv .SignForm form#loginForm .FormControlPassword {
    position: relative;
}
.MainSignSection .SignCardDiv .SignForm form#loginForm .FormControlPassword span.password-toggle{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(-15px , -50%);
    line-height: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.MainSignSection .SignCardDiv .SignForm form#loginForm .RemberDiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 12px;
}
.MainSignSection .SignCardDiv .SignForm form#loginForm .RemberDiv .form-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.MainSignSection .SignCardDiv .SignForm form#loginForm .RemberDiv .form-check input{
    width: 24px;
    height: 24px;
    border: 1px solid #cdcdcd;
    outline: none;
    border-radius: 6px;
    box-shadow: none !important;
    margin: 0;
}
.MainSignSection .SignCardDiv .SignForm form#loginForm .RemberDiv .form-check label{
    color: #262626;
    font-weight: 500;
    font-size: 16px;
    line-height: 0;
}
.MainSignSection .SignCardDiv .SignForm form#loginForm .RemberDiv :is( a , button) {
    color: #262626;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: 0.5s all ease-in-out;
    border: none;
   line-height: 0;
    &:hover{
        color: #49b653;
    }
}
.MainSignSection .SignCardDiv .SignForm form#loginForm :is( a , button.SignBtn),
.MainSignSection .SignCardDiv .SignForm #forgotForm button.SignBtn,
.MainSignSection .SignCardDiv .SignForm #resetPasswordForm button.SignBtn,
.MainSignSection .SignCardDiv .SignForm #viewOtp #otpForm :is( a , button.SignBtn) {
    width: 100%;
    min-height: 65px;
    color: #262626;
    outline: none;
    border: 1px solid #fff;
    font-weight: 600;
    letter-spacing: 1.2px;
    font-size: 21px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.5s all ease-in-out;
    border: none;
   line-height: 0;
    &:hover{
        background: #f2bf3fcc;
    }
}
.MainSignSection .SignCardDiv .SignForm #viewForgot,
.MainSignSection .SignCardDiv .SignForm #viewReset,
.MainSignSection .SignCardDiv .SignForm #viewOtp{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.MainSignSection .SignCardDiv .SignForm #viewForgot .forgot-header,
.MainSignSection .SignCardDiv .SignForm #viewReset .forgot-header,
.MainSignSection .SignCardDiv .SignForm #viewOtp .otp-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
}
.MainSignSection .SignCardDiv .SignForm #viewForgot .forgot-header h2,
.MainSignSection .SignCardDiv .SignForm #viewReset .forgot-header h2,
.MainSignSection .SignCardDiv .SignForm #viewOtp .otp-header h2{
    color: #262626;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
}
.MainSignSection .SignCardDiv .SignForm #viewForgot .forgot-header p,
.MainSignSection .SignCardDiv .SignForm #viewReset .forgot-header p,
.MainSignSection .SignCardDiv .SignForm #viewOtp .otp-header p{
    color: #262626;
    font-size: 21px;
    font-weight: 300;
    line-height: 40px;
}
.MainSignSection .SignCardDiv .SignForm #viewOtp .otp-header p span{
    font-weight: 600;
    color: #e53b47;
}
.MainSignSection .SignCardDiv .SignForm #viewForgot #forgotForm{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.MainSignSection .SignCardDiv .SignForm #viewReset #resetPasswordForm{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.MainSignSection .SignCardDiv .SignForm #viewForgot .BackLoginDiv{
    display: flex;
    align-items: center;
    justify-content: center;
}
.MainSignSection .SignCardDiv .SignForm #viewReset .BackLoginDiv{
    display: flex;
    align-items: center;
    justify-content: center;
}
.MainSignSection .SignCardDiv .SignForm #viewForgot .BackLoginDiv :is( a , button),
.MainSignSection .SignCardDiv .SignForm #viewReset .BackLoginDiv :is( a , button) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    color: #262626;
    font-size: 16px;
    font-weight: 600;
    border: none;
    background: transparent;
    padding: 0px 12px;
    transition: 0.5s all ease-in;
    border: none;
   line-height: 0;
    &:hover{
        color: #49b653;
        transform: scale(1.1);
    }
}
.MainSignSection .SignCardDiv .SignForm #viewOtp .OTPTimeDiv{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.MainSignSection .SignCardDiv .SignForm #viewOtp .OTPTimeDiv h6{
    font-size: 28px;
    font-weight: 600;
    color: #40c5e5;
}
.MainSignSection .SignCardDiv .SignForm #viewOtp #otpForm{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.MainSignSection .SignCardDiv .SignForm #viewOtp #otpForm .OtpInput{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.MainSignSection .SignCardDiv .SignForm #viewOtp #otpForm .OtpInput input{
    width: 65px;
    height: 65px;
    text-align: center;
    box-shadow: none;
    font-size: 20px;
    font-weight: 600;
    color: #262626;
}
.short-notice{
    display: none;
}

.short-notice {
    background: #e8f7ee;
    color: #1e7e34;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 1;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.short-notice.fade-out {
    opacity: 0;
    transform: translateY(-5px);
}

/* Multi-view helpers */
.hidden { display: none !important; }


.MainSignSection .SignCardDiv .BottomBlock{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.MainSignSection .SignCardDiv .BottomBlock :is( a , button) ,  .HomeBottomDiv :is( a , button){
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    animation: blink 2.5s linear infinite;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.9px;
    border: none;
   line-height: 0;
}
.MainSignSection .SignCardDiv .BottomBlock  a::after ,  .HomeBottomDiv a::after {
    position: absolute;
    content: "";
    background: #ff0000;
    width: 8px;
    left: -20px;
    height: 8px;
    border-radius: 50px;
    animation: blink 0.5s linear infinite;
}
@keyframes blink {
    0% {
    color: #ff3131;
    }
    20% {
    color: #f81c1c;
    }
    40% {
    color: #f93e3e;
    }
    60% {
    color: #fc7373;
    }
    80% {
    color: #fb9d9d;
    }
    100% {
    color: #ff0000;
    }
}
.MainSignSection .SignCardDiv .BottomBlock p ,  .HomeBottomDiv p{
    color: #262626;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
}

/* AfterLoginSection Started  */

.AfterLoginSection{
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
.AfterLoginSection .HomeTopHeaderDiv , .FirstShowRentLoanSec .FirstTopHeader{
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: #fff;
   padding: 16px 48px;
}
.AfterLoginSection .HomeTopHeaderDiv .LeftLogo img{
   width: 100%;
   max-width: 183px;
   height: auto;
}
.AfterLoginSection .HomeTopHeaderDiv .RightTopheader , .FirstShowRentLoanSec .FirstTopHeader .FirstRightheader{
   display: flex;
   align-items: center;
   gap: 18px;
}
.AfterLoginSection .HomeTopHeaderDiv .RightTopheader .date :is( a , button) , .FirstShowRentLoanSec .FirstTopHeader .FirstRightheader .date :is( a , button){
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 16px;
   font-weight: 600;
   color: #262626;
   border: none;
   line-height: 0;
}
.AfterLoginSection .HomeTopHeaderDiv .RightTopheader .UserInfo , .FirstShowRentLoanSec .FirstTopHeader .FirstRightheader .UserInfo{
   display: flex;
   align-items: center;
   gap: 8px;
}
.AfterLoginSection .HomeTopHeaderDiv .RightTopheader .UserInfo .profimg img , .FirstShowRentLoanSec .FirstTopHeader .FirstRightheader .UserInfo .profimg img{
   width: 40px;
   height: 40px;
   object-fit: cover;
   border-radius: 50%;
}
.AfterLoginSection .HomeTopHeaderDiv .RightTopheader .UserInfo .UserText{
   display: flex;
   flex-direction: column;
}
.AfterLoginSection .HomeTopHeaderDiv .RightTopheader .UserInfo .UserText h6 , .FirstShowRentLoanSec .FirstTopHeader .FirstRightheader .UserInfo .UserText h6{ 
   font-size: 16px;
   font-weight: 600;
   color: #262626;
}
.AfterLoginSection .HomeTopHeaderDiv .RightTopheader .UserInfo .UserText p{
   font-size: 14px;
   font-weight: 400;
   color: #262626;
}
.AfterLoginSection .HomeTopHeaderDiv .RightTopheader .Logout :is( a , button) , .FirstShowRentLoanSec .SecondTopHeader .Logout :is( a , button) {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 8px 24px;
   color: #262626;
   font-size: 16px;
   font-weight: 600;
   background: #e4b236;
   border-radius: 6px;
   transition: 0.5s ease-in;
   border: none;
   line-height: 0;
   &:hover{
    background: #40c5e5;
    color: #FFFFFF;

   }
}
.AfterLoginSection .HomeMiddleDiv  {
    display: flex;
    align-items: center;
    justify-content: center;
}
.AfterLoginSection .HomeMiddleDiv .MiddleCardDiv {
    background: #fff;
    padding: 100px 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}
.AfterLoginSection .HomeMiddleDiv .MiddleCardDiv .Logo img{
    width: 100%;
    max-width: 230px;
    height: auto;
}
.AfterLoginSection .HomeMiddleDiv .MiddleCardDiv h3{
    font-size: 42px;
    font-style: italic;
    font-weight: 300;
    font-family: initial;
}
.AfterLoginSection .HomeMiddleDiv .MiddleCardDiv .HomeafterLink{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 70px 0px 0px 0px;
}
.AfterLoginSection .HomeMiddleDiv .MiddleCardDiv .HomeafterLink :is( a , button){
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    background: #b1b1b1;
    min-height: 52px;
    border-radius: 8px;
    color: #262626;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 0px 2px 3px 0px rgb(0 0 0 / 38%);
    border: none;
   line-height: 0;
    &:hover{
        background: #eec291;
        box-shadow: 0px 2px 3px 0px rgb(0 0 0 / 38%);
    }
}
.AfterLoginSection .HomeBottomDiv{
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    background: #fff;
}

/* AfterLoginSection Ended  */


/* FirstShowRentLoanSec Started  */

.FirstShowRentLoanSec{
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
.FirstShowRentLoanSec .FirstTopHeader .firstLeftdiv{
    display: flex;
    align-items: center;
    gap: 48px;
}
.FirstShowRentLoanSec .FirstTopHeader .firstLeftdiv img{
    width: 100%;
    max-width: 183px;
    height: auto;
}
.FirstShowRentLoanSec .SecondTopHeader .SecndLink{
    display: flex;
    align-items: center;
    gap: 20px;
}
.FirstShowRentLoanSec .FirstTopHeader .firstLeftdiv :is( a , button) , .FirstShowRentLoanSec .SecondTopHeader .SecndLink :is( a , button){
    background: #67b8e9;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    line-height: 0;
}
.FirstShowRentLoanSec .FirstTopHeader .Notify{
    display: flex;
    align-items: center;
    gap: 8px;
}
.FirstShowRentLoanSec .FirstTopHeader .Notify span{
    color: #262626;
    font-size: 18px;
    font-weight: 600;
}
.FirstShowRentLoanSec .SecondTopHeader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(214, 204, 204);
    padding: 16px 48px;
    min-height: 80px;
}

.FirstShowRentLoanSec .RentLoanInnerDiv{
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
    padding: 60px 0px;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .Logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .Logo img{
    width: 100%;
    max-width: 183px;
    height: auto;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .FirstConsumerDiv , .FirstShowRentLoanSec .RentLoanInnerDiv .SecondConsumerDiv{
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 32px;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .FirstConsumerDiv h3 , .FirstShowRentLoanSec .RentLoanInnerDiv .SecondConsumerDiv h3{
   font-size: 28px;
   font-weight: 600;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .FirstConsumerDiv .FirstConstBtn , .FirstShowRentLoanSec .RentLoanInnerDiv .SecondConsumerDiv .ConsumrAvlDiv .SeconConsumBtn{
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 26px;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .FirstConsumerDiv .FirstConstBtn :is( a , button) , .FirstShowRentLoanSec .RentLoanInnerDiv .SecondConsumerDiv .ConsumrAvlDiv .SeconConsumBtn :is( a , button){
   display: flex;
   align-items: center;
   justify-content: center;
   min-width: 235px;
   min-height: 48px;
   background: #2c3763;
   border-radius: 6px;
   color: #FFFFFF;
   font-size: 16px;
   font-weight: 600;
   letter-spacing: 1.1px;
   box-shadow: 0px 4px 4px 0px #717171;
   border: none;
   line-height: 0;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .SecondConsumerDiv .ConsumrAvlDiv{
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .SecondConsumerDiv .ConsumrAvlDiv input{
    min-height: 48px;
    border-radius: 24px;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #717171;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .SecondConsumerDiv .ConsumrAvlDiv input::placeholder{
    font-size: 13px;
    font-weight: 500;
}
.FirstShowRentLoanSec .RentLoanInnerDiv .SecondConsumerDiv .ConsumrTableDiv{
    width: 100%;
    min-width: 1130px;
    
}

.BottomRentDiv{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    background: #fff;
    padding: 16px 48px;
}
.BottomRentDiv .HomeBottomDiv{
    display: flex;
    align-items: center;
    gap: 8px;
}
#loading { position: absolute; top: 100px; right: 0;}
#loading {
    right: 0px;
    top: 60% !important;
    /* background: #ffffffba; */
    width: 273px;
    padding: 0 110px 0 110px;
    /* border: 0px solid #286090; */
    /* border-radius: 3px; */
    height: 42px;
    left: 0;
    margin: 0 auto;
}
.loader_login {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #df3438;
  border-bottom: 8px solid #4cb856;
  border-right: 8px solid #e4b236;
  width: 40px;
  height: 40px;
  margin-left: 6px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
 @-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* FirstShowRentLoanSec Ended   */