/* =========================================================
   MODERN CRM AUTH PAGE - FULL & FINAL CSS
========================================================= */

/* =========================================================
   ROOT TOKENS
========================================================= */
:root {
    /* Brand */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-soft: #60a5fa;

    /* Core colors */
    --dark-color: #020617;
    --dark-light: #0f172a;
    --dark-lighter: #1e293b;

    --white-color: #ffffff;
    --text-color: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --dark-gradient: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    --hero-overlay: linear-gradient(135deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.88) 100%);

    /* Glass / surface */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.10);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-border-hover: rgba(255, 255, 255, 0.16);

    --surface-glass: rgba(255, 255, 255, 0.04);
    --surface-glass-2: rgba(255, 255, 255, 0.05);
    --surface-glass-3: rgba(255, 255, 255, 0.06);

    /* Borders */
    --border-soft: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.10);
    --border-primary-soft: rgba(96, 165, 250, 0.28);

    /* Shadows */
    --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 16px 34px rgba(37, 99, 235, 0.36);
    --shadow-lg: 0 40px 80px rgba(15, 23, 42, 0.24);
    --shadow-primary: 0 10px 24px rgba(37, 99, 235, 0.25);

    --shadow-primary-sm: 0 12px 26px rgba(37, 99, 235, 0.25);
    --shadow-primary-md: 0 16px 34px rgba(37, 99, 235, 0.28);
    --shadow-primary-lg: 0 18px 36px rgba(37, 99, 235, 0.35);

    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.20);
    --shadow-card-lg: 0 24px 50px rgba(0, 0, 0, 0.25);
    --shadow-panel: 0 30px 80px rgba(0, 0, 0, 0.30);

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 28px;
    --radius-3xl: 30px;
    --radius-4xl: 32px;
    --radius-5xl: 36px;
    --radius-pill: 999px;

    /* Layout */
    --container-width: 1320px;
    --navbar-height: 72px;
    --btn-height: 48px;
    --input-height: 52px;

    --section-space: 110px;
    --section-space-sm: 100px;
    --section-space-xs: 80px;

    /* Typography */
    --font-family: 'Inter', sans-serif;
    --hero-title-size: 64px;
    --section-title-size: 54px;
    --price-size: 54px;

    /* Motion */
    --transition: all .30s ease;
}
/* =========================================================
   RESET & BASE
========================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: var(--font-family);
    background: var(--dark-color);
    color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
textarea,
select {
    font: inherit;
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* =========================================================
   ACCESSIBLE FOCUS STATES
========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.nav-link:focus-visible {
    outline: 3px solid rgba(96, 165, 250, 0.9);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

.form-group:focus-within .form-label {
    color: var(--primary-color);
}

/* =========================================================
   CUSTOM SCROLLBAR
========================================================= */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2563eb 0%, #0f172a 100%);
    border: 2px solid var(--dark-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1d4ed8 0%, #020617 100%);
}

/* =========================================================
   COMMON REUSABLE PATTERNS
========================================================= */
.glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white-color);
    transition: var(--transition);
}

.glass-btn:hover {
    transform: translateY(-2px);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    color: var(--white-color);
    box-shadow: var(--shadow-sm);
}

.gradient-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--primary-gradient);
    color: var(--white-color);
    transition: var(--transition);
}

.gradient-btn:hover {
    transform: translateY(-2px);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

/* =========================================================
   NAVBAR WRAPPER
========================================================= */
.navbar-wrapper {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background .30s ease, border-color .30s ease, padding .30s ease;
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
    min-height: var(--navbar-height);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 40px;
}

.navbar-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.navbar-collapse {
    flex-grow: 1;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    gap: 8px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px !important;
    border-radius: var(--radius-md);
    color: #dbeafe !important;
    font-size: 14px;
    font-weight: 600;
    transition: background .30s ease, color .30s ease, transform .30s ease;
}

.navbar-nav .nav-link i {
    font-size: 16px;
    color: var(--primary-soft);
    transition: color .30s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white-color) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
    color: #93c5fd;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 30px;
}

.navbar-login-btn {
    height: var(--btn-height);
    padding: 0 24px 0 30px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
}

.navbar-register-btn {
    height: var(--btn-height);
    padding: 0 26px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
}

.navbar-login-btn,
.mobile-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white-color);
    transition: var(--transition);
}

.navbar-login-btn:hover,
.mobile-login-btn:hover {
    transform: translateY(-2px);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    color: var(--white-color);
    box-shadow: var(--shadow-sm);
}

.navbar-register-btn,
.mobile-register-btn,
.auth-btn,
.auth-btn.verify-otp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--primary-gradient);
    color: var(--white-color);
    transition: var(--transition);
}

.navbar-register-btn:hover,
.mobile-register-btn:hover,
.auth-btn:hover,
.auth-btn.verify-otp:hover {
    transform: translateY(-2px);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

/* =========================================================
   NAVBAR TOGGLER
========================================================= */
.navbar-toggler {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--white-color);
    box-shadow: none;
    transition: background .30s ease, border-color .30s ease, transform .30s ease;
}

.navbar-toggler i {
    font-size: 24px;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.14) !important;
    transform: translateY(-1px);
}

/* =========================================================
   MOBILE SIDEBAR / OFFCANVAS
========================================================= */
.mobile-sidebar {
    width: 320px !important;
    background: linear-gradient(180deg, #020617, #0f172a);
    color: var(--white-color);
}

.offcanvas-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-logo {
    height: 42px;
    width: auto;
}

.offcanvas-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 90px);
}

.sidebar-menu-group {
    margin-bottom: 30px;
}

.sidebar-menu-label {
    display: block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.mobile-navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    padding: 14px 16px !important;
    border-radius: var(--radius-lg);
    color: #dbeafe !important;
    font-size: 15px;
    font-weight: 600;
    transition: background .30s ease, transform .30s ease, color .30s ease;
}

.mobile-navbar-nav .nav-link i {
    font-size: 18px;
    color: var(--primary-soft);
}

.mobile-navbar-nav .nav-link:hover,
.mobile-navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white-color) !important;
    transform: translateX(2px);
}

.mobile-sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
    padding-top: 30px;
}

.mobile-login-btn {
    height: 52px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
}

.mobile-register-btn {
    height: 54px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

/* =========================================================
   AUTH PAGE
========================================================= */
.auth-page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.auth-bg {
    position: absolute;
    inset: 0;
    background: url('../img/login-bg.webp') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.auth-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.88) 100%);
    z-index: 2;
}

.main-auth-card {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    border-radius: var(--radius-5xl);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-lg);
}

/* =========================================================
   AUTH LEFT SIDE
========================================================= */
.auth-left-side {
    position: relative;
    flex: 1;
    padding: 60px;
    background: var(--dark-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.auth-left-side::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    background: rgba(37, 99, 235, 0.2);
    filter: blur(80px);
}

.left-content {
    position: relative;
    z-index: 2;
}

.left-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--white-color);
}

.left-content h1 span {
    display: block;
    background: linear-gradient(to right, #60a5fa, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left-content p {
    margin-top: 20px;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================================
   MINI INFO BOX
========================================================= */
.mini-info-box {
    position: relative;
    height: 100%;
    padding: 24px 18px !important;
    border-radius: var(--radius-2xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: var(--transition);
}

.mini-info-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.mini-info-box:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.25);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.mini-info-box strong {
    display: block;
    margin-bottom: 10px !important;
    font-size: 27px !important;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--white-color);
}

.mini-info-box small {
    display: block;
    font-size: 13px !important;
    font-weight: 500;
    letter-spacing: .3px;
    color: rgba(255, 255, 255, 0.65) !important;
}

/* =========================================================
   AUTH RIGHT SIDE
========================================================= */
.auth-right-side {
    flex: 1;
    padding: 50px 60px;
    background: var(--white-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
    padding: 6px;
    list-style: none;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.auth-tabs .nav-item {
    flex: 1;
}

.auth-tabs .nav-link {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--text-light);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.auth-tabs .nav-link.active {
    background: var(--primary-gradient) !important;
    color: var(--white-color) !important;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

/* =========================================================
   FORM SYSTEM
========================================================= */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-light);
    transition: color .25s ease;
}

.form-control {
    width: 100%;
    height: var(--input-height);
    padding: 0 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #f8fafc;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    appearance: none;
}

.form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.form-control:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

textarea.form-control {
    height: auto;
    min-height: 120px;
    padding: 16px 18px;
    resize: vertical;
}

.auth-btn,
.auth-btn.verify-otp {
    width: 100%;
    height: 52px;
    margin-top: 10px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    gap: 10px;
}

.auth-btn i {
    font-size: 18px;
}

.auth-btn:active,
.auth-btn.verify-otp:active,
.navbar-register-btn:active,
.mobile-register-btn:active,
.navbar-login-btn:active,
.mobile-login-btn:active {
    transform: translateY(0);
}

/* =========================================================
   FOOTER
========================================================= */

.footer-section {
    position: relative;
    background: var(--dark-light);
    border-top: 1px solid var(--border-glass);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* =========================================================
   FOOTER TITLES
========================================================= */

.footer-title {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 35px;
    height: 2px;

    background: var(--primary-color);
    border-radius: 10px;
}

/* =========================================================
   FOOTER MENU
========================================================= */

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: .9rem;
}

.footer-menu a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--primary-soft);
    transform: translateX(4px);
}

/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;

    margin-bottom: 1rem;

    color: var(--text-muted);
    line-height: 1.7;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
}

/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--surface-glass);
    border: 1px solid var(--border-glass);

    color: var(--white-color);

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);

    color: var(--white-color);

    transform: translateY(-4px);

    box-shadow: var(--shadow-primary);
}

/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 24px 0;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: .95rem;
}

.footer-bottom strong {
    color: var(--white-color);
}

.footer-bottom a {
    color: var(--primary-soft);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white-color);
}

/* =========================================================
   GLASS EFFECT
========================================================= */

.footer-section::before {
    content: '';

    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 300px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(96,165,250,.7),
            transparent
        );
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-brand {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {

    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        margin-top: 1rem;
    }

    .footer-contact li {
        font-size: .95rem;
    }
}


/* =========================================================
   LARGE DEVICES
========================================================= */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        display: none !important;
    }

    .navbar-actions {
        display: none !important;
    }

    .left-content h1 {
        font-size: 38px;
    }

    .auth-left-side {
        padding: 40px;
    }

    .auth-right-side {
        padding: 40px;
    }
}

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
}

/* =========================================================
   TABLET & MOBILE
========================================================= */
@media (max-width: 991.98px) {
    .auth-page {
        padding: 100px 20px 40px;
        align-items: center;
        justify-content: center;
    }

    .main-auth-card {
        flex-direction: column;
        width: 100%;
        max-width: 520px;
        margin: 0 auto !important;
        border-radius: var(--radius-4xl);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .auth-left-side {
        display: none;
    }

    .auth-right-side {
        width: 100% !important;
        padding: 40px 25px;
    }

    .mobile-sidebar {
        width: 320px !important;
    }

    .offcanvas-header {
        position: relative;
        padding: 24px 20px;
    }

    .offcanvas-header .btn-close {
        position: absolute;
        right: 20px;
    }

    .mobile-logo {
        height: 36px;
    }

    .offcanvas-body {
        padding: 20px 18px;
    }

    .sidebar-menu-group {
        width: 100%;
    }

    .sidebar-menu-label {
        margin: 24px 0 14px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
    }

    .mobile-navbar-nav .nav-link {
        justify-content: flex-start;
        padding: 14px 18px !important;
        border-radius: var(--radius-md);
        margin-bottom: 6px;
    }

    .mobile-navbar-nav .nav-link i {
        font-size: 18px;
    }

    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-right {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767.98px) {
    .navbar-wrapper {
        padding: 12px 0;
    }

    .navbar {
        min-height: 64px;
    }

    .navbar-logo {
        height: 40px;
    }

    .mobile-sidebar {
        width: 100% !important;
    }
}

@media (max-width: 575.98px) {
    .auth-page {
        padding: 80px 15px 20px;
    }

    .main-auth-card {
        border-radius: var(--radius-3xl);
    }

    .auth-right-side {
        padding: 35px 20px;
    }

    .auth-tabs .nav-link {
        height: 46px;
        font-size: 14px;
    }

    .form-control {
        height: 50px;
        border-radius: var(--radius-sm);
    }

    .auth-btn,
    .auth-btn.verify-otp {
        height: 50px;
        border-radius: var(--radius-sm);
    }

    .mobile-sidebar {
        width: 100% !important;
    }
}

/* =========================================================
   SMALL DEVICES
========================================================= */
@media (max-width: 380px) {
    .auth-right-side {
        padding: 25px 15px;
    }

    .auth-tabs .nav-link {
        padding: 0 8px !important;
        font-size: 13px;
    }

    .auth-tabs .nav-link i {
        display: none;
    }

    .mobile-navbar-nav .nav-link {
        font-size: 14px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}