/**
 * ScumCommander Dashboard Template
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --primary-color: #349acb;
    --primary-hover: #2a7ba3;
    --secondary-color: #933EC5;
    --success-color: #65b12d;
    --danger-color: #D80027;
    --warning-color: #ffab00;
    --info-color: #17a2b8;
    --dark-color: #2a3142;
    --light-color: #f8f9fa;
    --body-bg: #F6F8FA;
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 80px;
    --header-height: 70px;
    --transition-speed: 0.3s;
    --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.12);
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: var(--body-bg);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* ============================================
   Layout Structure
   ============================================ */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ============================================
   Sidebar Styles
   ============================================ */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: #1e293b;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.sidebar-brand img {
    max-width: 154px;
    opacity: 0.9;
}

.sidebar-brand:hover {
    color: #fff;
}

.sidebar-brand i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 5px;
}

.sidebar-close:hover {
    color: #fff;
}

.sidebar-menu {
    padding: 10px 0;
}

.sidebar-menu .menu-label {
    padding: 10px 20px 5px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu .menu-item {
    position: relative;
}

.sidebar-menu .menu-link {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all var(--transition-speed) ease;
    border-left: 3px solid transparent;
}

.sidebar-menu .menu-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.sidebar-menu .menu-link.active {
    background: rgba(52, 154, 203, 0.2);
    color: #fff;
    border-left-color: var(--primary-color);
}

.sidebar-menu .menu-link i {
    width: 19px;
    margin-right: 12px;
    font-size: 15px;
    text-align: center;
}

.sidebar-menu .menu-link .badge {
    margin-left: auto;
    font-size: 10px;
    padding: 3px 8px;
}

/* Submenu */
.sidebar-menu .submenu {
    background: rgba(0, 0, 0, 0.15);
    display: none;
}

.sidebar-menu .menu-item.open>.submenu {
    display: block;
}

.sidebar-menu .submenu .menu-link {
    padding-left: 52px;
    font-size: 13px;
}

.sidebar-menu .has-submenu>.menu-link::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    margin-left: auto;
    font-size: 10px;
    transition: transform var(--transition-speed) ease;
}

.sidebar-menu .has-submenu.open>.menu-link::after {
    transform: rotate(180deg);
}

/* ============================================
   Main Content Area
   ============================================ */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left var(--transition-speed) ease;
}

/* ============================================
   Header Styles
   ============================================ */
.dashboard-header {
    position: sticky;
    top: 0;
    background: #fff;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #555;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    transition: background-color 0.2s, color 0.2s;
    background-color: #f9f9f9;
}

.sidebar-toggle:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.breadcrumb-wrapper {
    display: flex;
    align-items: center;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    color: #999;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-search {
    position: relative;
}

.header-search input {
    width: 200px;
    padding: 8px 15px 8px 35px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    transition: all var(--transition-speed) ease;
}

.header-search input:focus {
    width: 250px;
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 154, 203, 0.1);
}

.header-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.header-icon-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #555;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    background-color: #f9f9f9;
}

.header-icon-btn:hover {
    background: var(--body-bg);
    color: var(--primary-color);
}

.header-icon-btn .badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
}

.user-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    transition: background var(--transition-speed) ease;
}

.user-dropdown:hover {
    background: var(--body-bg);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.user-role {
    font-size: 11px;
    color: #999;
}

.dropdown-item {
    font-size: 0.85rem;
}

/* ============================================
   Page Content
   ============================================ */
.page-content {
    flex: 1;
    padding: 25px;
}

.page-header {
    margin-bottom: 25px;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.page-description {
    color: #666;
    font-size: 14px;
}

/* ============================================
   Cards & Panels
   ============================================ */
.card {
    background: #fff;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 25px;
    transition: box-shadow var(--transition-speed) ease;
}

.card:hover {
    box-shadow: var(--box-shadow-hover);
}

.card-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

.card-footer {
    background: #fafafa;
    border-top: 1px solid #eee;
    padding: 15px 20px;
}

/* Stat Cards */
.stat-card {
    padding: 20px;
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-speed) ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
}

.stat-icon.primary {
    background: var(--primary-color);
}

.stat-icon.success {
    background: var(--success-color);
}

.stat-icon.warning {
    background: var(--warning-color);
}

.stat-icon.danger {
    background: var(--danger-color);
}

.stat-icon.info {
    background: var(--info-color);
}

.stat-icon.secondary {
    background: var(--secondary-color);
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-content p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

/* ============================================
   Feature Cards (for features list)
   ============================================ */
.feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    border-left: 4px solid #ccc;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.feature-card.enabled {
    border-left: 4px solid var(--primary-color);
}

.feature-card.disabled {
    border-left: 4px solid #ccc;
}

.feature-card .card-body {
    padding: 20px;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--body-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    font-weight: 400;
}

.feature-status.enabled {
    color: var(--success-color);
}

.feature-status.disabled {
    color: #999;
}

/* ============================================
   Form Sections (used across plugins)
   ============================================ */
.form-section {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-section .section-header {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0.5rem 0.5rem 0 0;
}

.form-section .section-header h5 {
    margin: 0;
    font-weight: 600;
}

.form-section .section-body {
    padding: 1.25rem;
}

.form-section.danger-zone {
    border-color: var(--danger-color);
}

.form-section.danger-zone .section-header {
    background: var(--danger-color);
    color: #fff;
}

.page-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-icon-wrapper i {
    font-size: 2rem;
}

.steam-id-help {
    font-size: 0.8125rem;
    color: #6c757d;
}

.fs-empty-icon {
    font-size: 4rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
    display: block;
}

.form-label .required {
    color: var(--danger-color);
    margin-left: 2px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 154, 203, 0.1);
    outline: none;
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(216, 0, 39, 0.1);
}

.form-control-color {
    padding: 5px;
    max-width: 40px;
}

.form-text {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.invalid-feedback {
    color: var(--danger-color);
    font-size: 12px;
    margin-top: 5px;
}

/* Form Select */
.form-select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 154, 203, 0.1);
    outline: none;
}

/* Checkboxes & Radios */
.form-check {
    padding-left: 1.75rem;
    margin-bottom: 8px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    border: 2px solid #ddd;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(52, 154, 203, 0.1);
}

/* Switch Toggle */
.form-switch .form-check-input {
    width: 42px;
    height: 24px;
    border-radius: 12px;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-success {
    background: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    background: #569c25;
    border-color: #569c25;
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-outline-secondary {
    border: 1px solid #ddd;
    color: #666;
    background: transparent;
}

.btn-outline-secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 16px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* ============================================
   Alerts
   ============================================ */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-success {
    background: rgba(101, 177, 45, 0.1);
    color: #4a8520;
}

.alert-danger {
    background: rgba(216, 0, 39, 0.1);
    color: #b8001f;
}

.alert-warning {
    background: rgba(255, 171, 0, 0.1);
    color: #cc8a00;
}

.alert-info {
    background: rgba(52, 154, 203, 0.1);
    color: #2a7ba3;
}

/* ============================================
   Badges
   ============================================ */
.badge {
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

.badge.bg-success {
    background: var(--success-color) !important;
}

.badge.bg-danger {
    background: var(--danger-color) !important;
}

.badge.bg-primary {
    background: var(--primary-color) !important;
}

.badge.bg-secondary {
    background: #6c757d !important;
}

/* ============================================
   Footer
   ============================================ */
.dashboard-footer {
    background: #fff;
    padding: 15px 25px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #666;
}

.dashboard-footer a {
    color: var(--primary-color);
}

/* ============================================
   Sidebar Collapsed State
   ============================================ */
.sidebar-collapsed .sidebar {
    width: var(--sidebar-collapsed-width);
}

/* Logo swap on collapse */
.sidebar .logo-collapsed {
    display: none;
}

.sidebar-collapsed .sidebar .logo-full {
    display: none;
}

.sidebar-collapsed .sidebar .logo-collapsed {
    display: block;
}

.sidebar-collapsed .sidebar .sidebar-brand span,
.sidebar-collapsed .sidebar .menu-label,
.sidebar-collapsed .sidebar .menu-link span,
.sidebar-collapsed .sidebar .menu-link .badge,
.sidebar-collapsed .sidebar .has-submenu>.menu-link::after {
    display: none;
}

.sidebar-collapsed .sidebar .menu-link {
    justify-content: center;
    padding: 10px;
}

.sidebar-collapsed .sidebar .menu-link i {
    margin-right: 0;
    font-size: 17px;
}

.sidebar-collapsed .main-content {
    margin-left: var(--sidebar-collapsed-width);
}

/* ============================================
   Sidebar Overlay (Mobile)
   ============================================ */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.sidebar-open .sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar-open .sidebar {
        transform: translateX(0);
    }

    .sidebar-close {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: flex;
    }

    .header-search input {
        width: 150px;
    }

    .header-search input:focus {
        width: 180px;
    }

    .user-info {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .page-content {
        padding: 15px;
    }

    .dashboard-header {
        padding: 0 15px;
    }

    .header-search {
        display: none;
    }

    .page-title {
        font-size: 1.25rem;
    }

    .breadcrumb-wrapper {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .feature-card .card-body {
        padding: 15px;
    }

    .card-body {
        padding: 15px;
    }
}

/* ============================================
   Utilities
   ============================================ */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-muted {
    color: #888 !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.bg-danger {
    background-color: var(--danger-color) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/* ============================================
   Loading State
   ============================================ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {

    .sidebar,
    .dashboard-header,
    .sidebar-overlay {
        display: none !important;
    }

    .main-content {
        margin-left: 0 !important;
    }

    .page-content {
        padding: 0;
    }

    .btn {
        display: none !important;
    }
}

/* ============================================
   Login Page Styles
   ============================================ */
.login-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.login-image {
    flex: 1;
    background: url('../../../images/login-image.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.login-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #fff;
    position: relative;
}

.logo-container {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.logo-container .login-logo {
    max-width: 175px;
    height: auto;
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.login-header {
    text-align: left;
    margin-bottom: 2rem;
}

.login-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #6c757d;
    font-size: 0.95rem;
}

.login-form-container .form-floating {
    margin-bottom: 1rem;
}

.login-form-container .form-floating > .form-control {
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
}

.login-form-container .form-floating > .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 154, 203, 0.15);
}

.login-form-container .form-floating > label {
    padding: 1rem 0.75rem;
}

.btn-login {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    background: var(--primary-color);
    border: none;
    color: white;
    transition: all var(--transition-speed) ease;
}

.btn-login:hover {
    background: var(--primary-hover);
    color: white;
}

.login-form-container .alert {
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.totp-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.back-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .login-image {
        display: none;
    }

    .login-form-container {
        background: var(--body-bg);
    }

    .logo-container {
        position: static;
        margin-bottom: 1.5rem;
    }

    .login-form-wrapper {
        background: white;
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
}