/* ==============================
   1. default 
   ============================== */
p {
    font-size: 16px;
    color: #767676;
    line-height: 1.5;
    font-weight: 400;
}

li,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    color: #121511;
    font-weight: 400;
}

:after,
:before,
a,
.card {
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    transition: all 250ms linear
}

.bg-1 {
    background: #EFEFEF
}

.bg-2 {
    background: #F36A10
}

strong {
    font-weight: 500;
    font-size: 100%;
}

a {
    text-decoration: none;
    color: currentColor;
}

.themebtn {
    background: #006400;
    --bs-btn-hover-color: #fff;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    padding: 12px 36px;
    overflow: hidden;
    z-index: 1;
    border: none;
    border-radius: 4px;
    position: relative;
    display: inline-block;
    box-shadow: 0px 3px 24px rgb(10 93 167 / 20%);
}

.themebtn::after {
    content: "";
    background: #232D3B;
    position: absolute;
    width: 200%;
    height: 500%;
    z-index: -1;
    border-radius: 100%;
    -webkit-transform: translate(30%, 10%) translateZ(0);
    transform: translate(30%, 10%) translateZ(0);
    -webkit-transition: 0.36s cubic-bezier(0.4, 0, 1, 1);
    transition: 0.36s cubic-bezier(0.4, 0, 1, 1);
}

.themebtn:hover:after {
    -webkit-transform: translate(-45%, -34%) translateZ(0);
    transform: translate(-45%, -34%) translateZ(0);
}

.themebdrbtn {
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #212529;
    padding: 10px 36px;
    overflow: hidden;
    z-index: 1;
    border: solid 2px #0a5da7;
    border-radius: 4px;
    position: relative;
    display: inline-block;
    box-shadow: 0px 3px 24px rgb(10 93 167 / 20%);
    -webkit-transition: 0.36s cubic-bezier(0.4, 0, 1, 1);
    transition: 0.36s cubic-bezier(0.4, 0, 1, 1);
}

.themebdrbtn::after {
    content: "";
    background: #232D3B;
    position: absolute;
    width: 200%;
    height: 500%;
    z-index: -1;
    border-radius: 100%;
    -webkit-transform: translate(30%, 10%) translateZ(0);
    transform: translate(30%, 10%) translateZ(0);
    -webkit-transition: 0.36s cubic-bezier(0.4, 0, 1, 1);
    transition: 0.36s cubic-bezier(0.4, 0, 1, 1);
}

.themebdrbtn:hover {
    color: #FFFFFF;
    border-color: #232D3B;
    background: #232d3b;
}

.themebdrbtn:hover:after {
    -webkit-transform: translate(-45%, -34%) translateZ(0);
    transform: translate(-45%, -34%) translateZ(0);
}

.title :is(h1, h2, h3) {
    color: var(--title-color);
    font-size: var(--title-font-size);
    margin-bottom: var(--title-mb);
    line-height: 1.27;
    font-weight: 700;
}

.subtitle :is(h1, h2, h3, h4) {
    color: var(--subtitle-color);
    font-size: var(--subtitle-font-size);
    line-height: 1.2;
    font-weight: 600;
}

/* ==============================
   2. login screen css 
   ============================== */
.loginbg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 20px;
    position: relative;
    z-index: 1;
    background: #eff1f8 url(../images/login-bg.png);
    background-image: none;
    background-size: contain;
    background-position: right top;
}

.loginbg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 42%);
    height: 100%;
    z-index: -1;
    /* background: url(../images/login.jpg) no-repeat; */
    background-position: left center;
    background-size: cover;
}

.loginbox {
    width: 100%;
    max-width: 540px;
    min-height: 540px;
    background: #fff;
    height: 100%;
    margin: auto;
    border-radius: 64px;
    padding: 3vw 3vw;
    position: relative;
    box-shadow: 0px 3px 24px rgb(0 0 0 / 10%);
}

.loginbox .themeform {
    width: 100%;
    max-width: 360px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.loginbox h5 {
    color: #767676;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 400;
}

.offersbox {
    height: 100%;
    border-radius: 64px;
    padding: 54px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 120px 0px 0px #ffffff;
}

.offersbox::after {
    background: url(../images/login.jpg) no-repeat;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -2px;
    height: 100%;
    z-index: -1;
    border-radius: 64px;
    /*border: solid 7px #ffffff;*/
    /* background: rgb(10 93 167 / 50%);
      background: linear-gradient(0deg, rgb(10 93 167 / 50%) 0%, rgba(84, 84, 84, 0.2049194677871149) 100%); */
}

.offersbox h1 {
    font-size: calc(var(--title-font-size) + 6px);
    color: #FFFFFF;
    margin-top: auto;
    max-width: 398px;
    line-height: 1.2;
}

.offersbox p {
    font-size: clamp(0.875rem, 0.5244rem + 0.9756vw, 1.5rem);
    color: #FFFFFF;
    max-width: 498px;
    font-weight: 500;
    line-height: 1.3;
}

.forgotpwd,
.hltlink {
    color: #0A5DA7;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.themeform .form-control {
    padding: 11px 16px;
    border-radius: 4px;
    border-color: #D6D5D5;
}

.themeform .form-label {
    font-size: 16px;
    color: #B3B8BD;
    letter-spacing: 0.1px;
    margin-bottom: 5px;
}

.themeform .form-check-label {
    font-size: 14px;
    color: #B3B8BD;
}

.themeform .form-check-input {
    border-radius: 2px;
}

.themeform .form-check-input:focus {
    box-shadow: none;
}

.themeform .form-check-input:checked {
    background-color: #0A5DA7;
    border-color: #0A5DA7;
}

.themeform .form-check-label .linkbtn {
    color: currentColor;
}

.themeform .form-check-label .linkbtn:hover {
    color: #0A5DA7;
}

.themeform .form-input>p {
    margin: 5px 0px;
    font-size: 14px;
}

.help-block {
    color: #9f1735;
    font-size: small;
}




#post-loader-show {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #fff;
    left: 0px;
    opacity: 0.5
}

.success-msg P {
    font-size: 18px;
}

.success-icon svg {
    -webkit-transform: scale(0.6);
    ;
    transform: scale(0.6);
    -webkit-filter: drop-shadow(0 4px 16px rgb(34 174 115 / 50%));
    filter: drop-shadow(0 4px 16px rgb(34 174 115 / 50%))
}

.success-icon svg polyline {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.success-icon svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards
}

.success-icon svg circle#colored {
    -webkit-animation: colored-circle 0.6s ease-in-out 0.7s backwards;
    animation: colored-circle 0.6s ease-in-out 0.7s backwards
}

.dnone {
    display: none;
}

.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    display: none;
    background: #fff;
    left: 0px;
    opacity: 0.5;
    text-align: center;
}

.newloader {
    position: absolute;
    top: 40%;
    width: 50px;
}

#toolbarContainer {
    display: none !important;
}





#web-icon {
    background-color: #FFFFFF;
    box-shadow: 0 0 4px #DFDFDF;
    -moz-box-shadow: 0 0 4px #DFDFDF;
    -webkit-box-shadow: 0 0 4px #DFDFDF;
}

#web-icon {
    bottom: 0;
    position: fixed;
    right: 0;
    z-index: 10000;
    height: 36px;
    width: 36px;
    margin: 0;
    padding: 0;
    clear: both;
    text-align: center;
    cursor: pointer;
}

.web-bar-dinlineBlock {
    display: inline-block;
}

#web a svg {
    margin: 8px;
    max-width: 20px;
    max-height: 20px;
}

/* ==========================================================================
   Premium Login Page Enhancements
   ========================================================================== */

/* Ensure the background image covers the entire container perfectly */
.offersbox::after {
    background-size: cover !important;
    background-position: center center !important;
    transition: transform 0.5s ease;
}

.offersbox {
    overflow: hidden;
    /*box-shadow: 20px 0px 40px rgba(0,0,0,0.05) !important;*/
    /* Softer shadow */
}

/* Adding a subtle overlay to the image for better text readability */
.offersbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
    border-radius: 64px;
}

.offersbox h1,
.offersbox p {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Premium styling for the login box */
.loginbox {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.themebtn {
    background: #882d32 !important;
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.2) !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.themebtn:hover {
    background: #882d32 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 100, 0, 0.3) !important;
}

.form-control {
    border-radius: 8px !important;
    padding: 12px 16px !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
}

.form-control:focus {
    border-color: #006400 !important;
    box-shadow: 0 0 0 4px rgba(0, 100, 0, 0.1) !important;
}

.form-label {
    color: #495057 !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
}

/* Responsiveness for mobile */
@media (max-width: 991px) {
    .loginbg {
        padding: 30px 15px;
    }

    .loginbox {
        border-radius: 32px;
        padding: 40px 20px;
    }
}