@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";

/* ============================================================
   LOGIN PAGE – MINIMAL EXTRACTED CSS
   Source: style.css + custom.css (tree-shaken for login.blade.php)
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --primary: 43 83 169;
    --secondary: 35 183 229;
    --warning: 245 184 73;
    --info: 73 182 245;
    --success: 38 191 148;
    --danger: 230 83 60;
    --light: 243 246 248;
    --dark: 35 35 35;
    --default-text-color: 51 51 53;
    --default-border: 243 243 243;
    --input-border: 233 237 246;
    --body-bg: 240 241 247;
    --theme-color: #2B53A9;
}

html {
    scroll-behavior: smooth;
    text-align: start;
    font-family: Inter, sans-serif;
}

html[dir=rtl] {
    direction: rtl !important;
}

.text-defaultsize {
    font-size: 12px;
}

/* ---------- Font: RemixIcons (used by ri-eye-off-line on the toggle button) ---------- */
/* @font-face {
    font-family: "remixicon";
    src: url("/assets/admin/css/remixicon-B6TYQNEG.eot?t=1705244689813");
    src:
        url("/assets/admin/css/remixicon-B6TYQNEG.eot?t=1705244689813#iefix") format("embedded-opentype"),
        url("/assets/admin/css/remixicon-YMLS4N6S.woff2?t=1705244689813") format("woff2"),
        url("/assets/admin/css/remixicon-SE6OC3C7.woff?t=1705244689813") format("woff"),
        url("/assets/admin/css/remixicon-YXA6Q467.ttf?t=1705244689813") format("truetype"),
        url("/assets/admin/css/remixicon-BRVJTNCR.svg?t=1705244689813#remixicon") format("svg");
    font-display: swap;
} */

/* [class^="ri-"],
[class*=" ri-"] {
    font-family: "remixicon" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
} */

/* ---------- Base resets (scoped to what the page uses) ---------- */
/* *,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #f2f4f5;
} */

/* ---------- Typography helpers ---------- */
/* .text-defaultsize {
    font-size: 0.813rem;
}

.text-defaulttextcolor {
    color: rgb(var(--default-text-color));
} */

/* .h5 {
    font-size: 1.25rem;
} */

/* ---------- Container (responsive max-widths) ---------- */
/* .container {
    width: 100%;
}

@media (min-width: 480px)  { .container { max-width: 480px; } }
@media (min-width: 768px)  { .container { max-width: 768px; } }
@media (min-width: 992px)  { .container { max-width: 992px; } }
@media (min-width: 1200px) { .container { max-width: 1200px; } }
@media (min-width: 1400px) { .container { max-width: 1400px; } }
@media (min-width: 1800px) { .container { max-width: 1800px; } } */

/* ---------- Authentication layout ---------- */
.authentication {
    min-height: 100vh;
}

/* ---------- Box card ---------- */
.box {
    position: relative;
    margin-bottom: 0.2rem;
    display: flex;
    flex-direction: column;
    /* border-radius: 0.25rem; */
    background-color: rgb(255 255 255);
    font-size: 0.75rem;
    color: rgb(var(--default-text-color));
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.box-body {
    flex: 1 1 auto;
    padding: 0.75rem;
    color: rgb(var(--default-text-color));
}

/* ---------- Form label ---------- */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: rgb(var(--default-text-color)) !important;
}

/* ---------- Input group (password field + eye-toggle alignment) ---------- */
.input-group {
    position: relative;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch;
}

.input-group > .form-control {
    position: relative;
    width: 1%;
    min-width: 0;
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: auto;
}

/* Remove start-radius from every child that is not the first (the eye button) */
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-start-start-radius: 0 !important;
    border-end-start-radius: 0 !important;
}

/* Remove end-radius from every child that is not the last (the text input) */
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-start-end-radius: 0 !important;
    border-end-end-radius: 0 !important;
}

/* ---------- Form control (text / email / password inputs) ---------- */
.form-control {
    border-radius: 0.25rem;
    border-color: rgb(var(--input-border));
    background-color: rgb(255 255 255);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
    color: rgb(var(--default-text-color));
    border-width: 1px;
    border-style: solid;
    width: 100%;
}

.form-control::placeholder {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.4;
    color: rgb(var(--default-text-color));
}

.form-control::-moz-placeholder {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.4;
    color: rgb(var(--default-text-color));
}

.form-control:focus {
    outline: none;
    border-color: rgb(var(--input-border));
    background-color: rgb(255 255 255);
    color: rgb(var(--default-text-color));
    box-shadow: none;
}

.form-control-lg {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.75rem;
}

/* ---------- Border utilities used on the password input ---------- */
/* .border-defaultborder {
    border-color: rgb(var(--default-border));
} */

/* .\!border-defaultborder {
    border-color: rgb(var(--default-border)) !important;
} */

/* .border-s,
.\!border-s {
    border-inline-start-width: 1px;
} */

/* .\!border-s {
    border-inline-start-width: 1px !important;
} */

/* ---------- Border-radius utilities ---------- */
/* .\!rounded-md {
    border-radius: 0.5rem !important;
}

.\!rounded-s-md {
    border-start-start-radius: 0.5rem !important;
    border-end-start-radius: 0.5rem !important;
}

.\!rounded-s-none {
    border-start-start-radius: 0 !important;
    border-end-start-radius: 0 !important;
} */

/* ---------- Margin utilities (eye-button reset) ---------- */
/* .\!mb-0 {
    margin-bottom: 0px !important;
}

.\!mt-0 {
    margin-top: 0px !important;
} */

/* ---------- ti-btn base ---------- */
.ti-btn {
    margin-bottom: 0.125rem;
    margin-top: 0.125rem;
    margin-inline-start: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.25rem;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ti-btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: none;
}

/* Login page specific padding for authentication-basic context */
.authentication.authentication-basic .ti-btn {
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
}

/* ---------- ti-btn-primary-full (Sign In button) ---------- */
.ti-btn-primary-full {
    background-color: rgb(var(--primary));
    color: rgb(255 255 255);
}

/* ---------- ti-btn-light (eye-toggle button) ---------- */
.ti-btn-light {
    background-color: rgb(var(--light));
    color: rgb(var(--default-text-color));
    border-color: rgb(var(--default-border));
}

.ti-btn-light:hover {
    background-color: rgb(var(--light));
    color: rgb(var(--default-text-color));
}

.ti-btn-light:focus {
    background-color: rgb(var(--light) / 0.8);
}

/* ---------- ti-btn-wave (ripple — keep declaration present; JS drives it) ---------- */
.ti-btn-wave {
    overflow: hidden;
    position: relative;
}

/* ---------- Auth page background ---------- */
.auth-page {
    background: url('/assets/admin/images/authentication/login-bg.png') no-repeat center center fixed;
    background-size: cover;
    background-position: center 55%;
}

/* ---------- Glassmorphism card ---------- */
.blurred-bg {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ---------- Branding logo ---------- */
.ct-login-desktop-logo {
    width: 160px;
    height: auto;
}

/* ---------- Welcome heading brand colour ---------- */
.welcome-heading .highlight {
    color: #2b53a9;
    font-weight: bold;
}

.hide-eye-icon .input-group button {
    display: none;
}

/* Dark Them */
/* .ct-theme-toggle-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
} */

#ct-theme-toggle {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
    line-height: 1;
}

#ct-theme-toggle .bx {
    font-size: 16px;
    color: #2B53A9;
    line-height: 1;
    transition: color 0.2s;
}

#ct-theme-toggle:hover {
    background: rgba(43, 83, 169, 0.1);
}

#login-card[data-theme="dark"] #ct-theme-toggle {
    border-color: rgba(255, 255, 255, 0.15);
}

#login-card[data-theme="dark"] #ct-theme-toggle .bx {
    color: #fbbf24;
}

#login-card[data-theme="dark"] #ct-theme-toggle:hover {
    background: rgba(251, 191, 36, 0.1);
}


#login-card[data-theme="dark"] {
    background: rgba(28, 30, 43, 0.96) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#login-card[data-theme="dark"] .box-body {
    color: #a0aec0;
}


#login-card[data-theme="dark"] .h5 {
    color: #e2e8f0 !important;
}


#login-card[data-theme="dark"] .form-label {
    color: #e2e8f0 !important;
}


#login-card[data-theme="dark"] .form-control {
    background-color: #2a2d3e !important;
    border-color: #3a3d52 !important;
    color: #e2e8f0 !important;
    border-radius: 0.375rem;
}

#login-card[data-theme="dark"] .form-control::placeholder,
#login-card[data-theme="dark"] .form-control::-moz-placeholder {
    color: #6b7280 !important;
    opacity: 1;
}

#login-card[data-theme="dark"] .form-control:focus {
    background-color: #2f3347 !important;
    border-color: #4a4f6a !important;
    box-shadow: none !important;
}


#login-card[data-theme="dark"] .ti-btn-light {
    background-color: #2a2d3e !important;
    border-color: #3a3d52 !important;
    color: #6b7280 !important;
}
#login-card[data-theme="dark"]  .tracking-wide
{
    color:#fff;
}

#login-card[data-theme="dark"] .ti-btn-light:hover {
    background-color: #2f3347 !important;
    color: #a0aec0 !important;
}

#login-card[data-theme="dark"] .ti-btn-primary-full {
    background-color: #2B53A9 !important;
    border-color: #2B53A9 !important;
    color: #ffffff !important;
}

#login-card[data-theme="dark"] .ti-btn-primary-full:hover {
    background-color: #3b63c8 !important;
    border-color: #3b63c8 !important;
}


#login-card[data-theme="dark"] .bg-red-100 {
    background-color: rgba(220, 38, 38, 0.15) !important;
    border-color: rgba(220, 38, 38, 0.35) !important;
    color: #fca5a5 !important;
}
/* forgot password page specific css rules */

.form-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgb(var(--default-text-color));
}

.text-muted {
    color: #8c90a7 !important;
}

/* ---------- Button Variants (Specific to Forgot Password) ---------- */
.ti-btn-primary {
    background-color: rgb(var(--primary));
    color: #fff;
    border: 1px solid rgb(var(--primary));
    transition: all 0.2s ease;
}

.ti-btn-primary:hover {
    background-color: rgb(var(--primary) / 0.9);
    border-color: rgb(var(--primary) / 0.9);
}

/* ---------- Alignment Fixes for the Icon ---------- */
/* .ti-btn i {
    vertical-align: middle;
    margin-inline-start: 0.25rem;
} */

/* ---------- Responsive Branding (Custom.css missing logic) ---------- */
/* @media (max-width: 991.98px) { */
@media (min-width: 0px) and (max-width: 767.98px) {
    .ct-login-desktop-logo {
        display: none; /* Hides large logo on mobile as per theme design */
    }
}

/* 404 page css rules */

        /* ---------- Error Page Specifics ---------- */
.error-text {
    /* Large 404 font size and weight */
    font-size: 8rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 0;
    /* Often uses a specific secondary or primary color in your theme */
    color: rgb(var(--primary));
    opacity: 0.15; /* Provides that faded background look for the 404 text */
}

/* If the 404 text is supposed to be solid/vibrant in your theme: */
/* .authentication .error-text {
    opacity: 1;
    font-weight: 900;
    background: linear-gradient(to right, rgb(var(--primary)), rgb(var(--secondary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
/* ---------- Component: Buttons with Icons ---------- */
/* .ti-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 0.35rem;
    transition: all 0.2s ease;
} */

/* .ti-btn i {
    font-size: 1.1rem;
    line-height: 1;
} */

/* ---------- Particles Background Logic ---------- */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; /* Ensures particles stay behind the error text */
    background-color: transparent;
}

/* .text-defaulttextcolor {
    color: rgb(var(--default-text-color)) !important;
} */

.error-page {
    position: absolute;
    display: flex;
    min-height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bx-shield-quarter:before {
    content: "\ec08";
}

/* missing css rules of 403 */
    /* ---------- Outline Primary Variant ---------- */
.ti-btn-outline-primary {
    color: rgb(var(--primary));
    border-color: rgba(var(--primary), 0.2);
    background-color: transparent;
}

.ti-btn-outline-primary:hover {
    background-color: rgb(var(--primary));
    color: #fff;
    border-color: rgb(var(--primary));
}
.ti-btn-danger {
    background-color: rgb(var(--danger) / 0.1);
    color: rgb(var(--danger));
}

.ti-btn-danger:hover {
    background-color: rgb(var(--danger));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}