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

/* ========================================
   Base Styles
   ======================================== */

body {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* ========================================
   Alerts & Close Buttons
   ======================================== */

.alert {
    animation: slideDown 0.3s ease;
}

.alert-dismissible .btn-close {
    font-size: 22px;
    padding: 1.5rem 1.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn-primary {
    -webkit-box-shadow: 0 1px 2px 0 rgba(49, 103, 243, 0.35);
    box-shadow: 0 1px 2px 0 rgba(49, 103, 243, 0.35);
}

.btn-primary:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-soft-primary {
    background-color: rgba(49, 103, 243, 0.15);
    color: #3167f3;
}

.btn-soft-primary:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #3167f3;
    color: #fff;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: transparent;
}

/* ========================================
   Cards
   ======================================== */

.card {
    -webkit-box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.03);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.03);
    margin-bottom: 1.5rem;
}

/* ========================================
   Forms
   ======================================== */

label {
    color: var(--bs-label-color);
    vertical-align: middle;
}

.form-switch-success .form-check-input:checked {
    background-color: #0da684;
    border-color: #0da684;
}

/* ========================================
   Borders & Utilities
   ======================================== */

.border-theme-white-2 {
    border: 2px solid var(--bs-theme-white-color);
}

/* ========================================
   CSS Variables - Root
   ======================================== */

:root {
    --bs-topbar-height: 75px;
    --bs-topbar-bg: #f9fbfd;
    --bs-topbar-b-border-color: #e3ebf6;
    --bs-topbar-nav-icon-bg: #fff;
    --bs-topbar-nav-icon-color: #424d65;
    --bs-startbar-width: 270px;
    --bs-startbar-collapsed-width: 70px;
    --bs-startbar-bg: #fff;
    --bs-startbar-e-border-color: #e3ebf6;
    --bs-menu-icon-color: #96a0b5;
    --bs-menu-link-color: #061237;
    --bs-menu-link-active-bg-color: #f9fbfd;
    --bs-nav-link-disc-color: #8997bd;
    --bs-menu-label-color: #a0a5b3;
    --bs-label-color: #656d9a;
    --bs-text-muted: var(--bs-secondary-color);
    --bs-box-shadow-sm: 0 2px 2px rgba(61, 71, 81, 0.05);
    --bs-card-bg: var(--bs-secondary-bg);
    --bs-theme-white-color: #ffffff;
    --bs-border-secondary: #95a0c5;
    --bs-table-head-bg: #f4f6f9;
}

/* ========================================
   CSS Variables - Dark Theme
   ======================================== */

html[data-bs-theme='dark'] {
    --bs-light: #303231;
    --bs-light-rgb: 48, 50, 49;
    --bs-dark: #f4f6f9;
    --bs-dark-rgb: 244, 246, 249;
    --bs-label-color: #9797a5;
    --bs-theme-white-color: #2e2e31;
    --bs-body-color: #d9e1ec;
    --bs-text-muted: #aab0b9;
    --bs-box-shadow-sm: 0 2px 2px rgba(61, 71, 81, 0.05);
    --bs-card-bg: #151821;
    --bs-topbar-bg: #141824;
    --bs-topbar-b-border-color: #333547;
    --bs-topbar-nav-icon-bg: #222735;
    --bs-topbar-nav-icon-color: #a1a8bd;
    --bs-secondary: #c3c3c3;
    --bs-secondary-rgb: 195, 195, 195;
    --bs-border-secondary: #333645;
    --bs-table-head-bg: #222735;
    --bs-startbar-bg: #141824;
    --bs-startbar-e-border-color: #333547;
    --bs-menu-icon-color: #5e748b;
    --bs-menu-link-color: #a1a8bd;
    --bs-menu-link-active-bg-color: rgba(249, 251, 253, 0.04);
    --bs-menu-link-hover-color: #ffffff;
    --bs-nav-link-disc-color: #8997bd;
    --bs-menu-label-color: #a0a5b3;
}

html[data-startbar='dark'] {
    --bs-startbar-bg: #141824;
    --bs-startbar-e-border-color: #333547;
    --bs-menu-icon-color: #5e748b;
    --bs-menu-link-color: #a1a8bd;
    --bs-menu-link-active-bg-color: rgba(249, 251, 253, 0.04);
    --bs-menu-link-hover-color: #ffffff;
    --bs-nav-link-disc-color: #8997bd;
    --bs-menu-label-color: #a0a5b3;
    --bs-dark: #f4f6f9;
    --bs-box-shadow-sm: 0 2px 2px rgba(61, 71, 81, 0.05);
}

/* ========================================
   Typography
   ======================================== */

.fs-18 {
    font-size: 18px !important;
}

.thumb-xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 20px !important;
    width: 20px !important;
    font-size: 10px;
    font-weight: 700;
}

/* ========================================
   Background Soft Colors
   ======================================== */

.bg-soft-primary {
    background-color: rgba(49, 103, 243, 0.15);
    color: #3167f3;
}

.bg-soft-secondary {
    background-color: rgba(168, 181, 209, 0.15);
    color: #a8b5d1;
}

.bg-soft-success {
    background-color: rgba(13, 166, 132, 0.15);
    color: #0da684;
}

.bg-soft-info {
    background-color: rgba(65, 203, 216, 0.15);
    color: #41cbd8;
}

.bg-soft-warning {
    background-color: rgba(244, 161, 77, 0.15);
    color: #f4a14d;
}

.bg-soft-danger {
    background-color: rgba(239, 52, 99, 0.15);
    color: #ef3463;
}

.bg-soft-pink {
    background-color: rgba(253, 60, 151, 0.15);
    color: #fd3c97;
}

.bg-soft-purple {
    background-color: rgba(91, 88, 230, 0.15);
    color: #5b58e6;
}

.bg-soft-light {
    background-color: rgba(244, 246, 249, 0.15);
    color: #f4f6f9;
}

.bg-soft-dark {
    background-color: rgba(37, 40, 45, 0.15);
    color: #25282d;
}

/* ========================================
   OTP & Password Strength Styles
   ======================================== */

.otp-input {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 5px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
}

.otp-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.otp-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.timer {
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
}

.otp-input:not(:placeholder-shown) {
    border-color: #198754;
}

#resendBtn,
#resendBtnLoading {
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-strength {
    height: 5px;
    margin-top: 5px;
    border-radius: 3px;
    transition: all 0.3s;
}

.strength-weak {
    background: #dc3545;
    width: 33%;
}

.strength-medium {
    background: #ffc107;
    width: 66%;
}

.strength-strong {
    background: #28a745;
    width: 100%;
}

.password-requirements {
    font-size: 12px;
    margin-top: 5px;
}

.requirement {
    color: #dc3545;
    transition: color 0.3s;
}

.requirement.met {
    color: #28a745;
}

.requirement i {
    width: 14px;
}

/* Style for the placeholder (specific to WebKit/Blink browsers like Chrome, Safari) */
#username::-webkit-input-placeholder {
    text-transform: none;
}

/* Style for the placeholder (Firefox) */
#username:-moz-placeholder {
    text-transform: none;
}

/* Style for the placeholder (Internet Explorer) */
#username:-ms-input-placeholder {
    text-transform: none;
}

/* Style for the placeholder (Standard/modern browsers) */
#username::placeholder {
    text-transform: none;
}

.ex-page-content h1 {
    font-size: 98px;
    font-weight: 700;
    text-shadow: rgba(137, 151, 189, .2) 1px 1px, rgba(137, 151, 189, .2) 2px 2px, rgba(137, 151, 189, .2) 3px 3px
}