/* ========================================
   MERGED CSS - All Pages Unified
   ======================================== */

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #1e1e2f;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========================================
   AUTH PAGES (Login, Register, Forgot Password)
   ======================================== */
.card-container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #f9fafb;
}

.left-side {
    flex: 1;
    background-color: #f1f5f9;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-content-wrapper {
    transform: scale(0.8);
    max-width: 380px;
    width: 100%;
}

.right-side {
    flex: 1;
    background-color: #fff;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.center-text {
    display: block;
    text-align: center;
}

.login-form .form-label {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    background-color: #f8fafc;
}

.login-form input {
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
    border-radius: 1rem;
    padding: 0.5rem 0.75rem;
}

.login-form input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #3b82f6;
    border: none;
    border-radius: 999px;
    padding: 0.75rem;
}

.image-side {
    transform: scale(0.85);
    max-width: 550px;
    width: 100%;
    text-align: left;
}

.image-side img {
    width: 100%;
    max-width: 550px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: block;
}

.img-right {
    margin-left: auto;
    max-width: 500px;
    margin-right: -100px;
}

.text-primary {
    color: #3b82f6 !important;
}

/* ========================================
   DASHBOARD LAYOUT (Sidebar, Main, Topbar)
   ======================================== */
.container {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 15;
}

.sidebar {
    width: 230px;
    background-color: white;
    border-right: 1px solid #eee;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    z-index: 20;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #265df2;
}

.logo i {
    color: #265df2;
    font-size: 24px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #606060;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.menu-item:hover {
    background-color: #f0f2f7;
}

.menu-item.active {
    background-color: #eef1ff;
    color: #265df2;
    font-weight: 600;
}

.menu-item i {
    width: 20px;
    text-align: center;
    margin-right: 12px;
}

.sidebar-top {
    display: flex;
    flex-direction: column;
}

.sidebar-bottom {
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    position: relative;
    min-width: 0;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background-color: white;
    padding: 15px 20px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    color: #606060;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.menu-toggle:hover {
    background-color: #f0f2f7;
}

.search-box {
    width: 300px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 14px;
    padding-right: 35px;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f7f9fc;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e1e2f;
    font-weight: 600;
}

.user-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* ========================================
   DASHBOARD SECTIONS
   ======================================== */
.section-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e1e2f;
}

.first-section-heading {
    margin-top: 80px;
}

.overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 30px 0;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-content h3 {
    font-size: 14px;
    margin-bottom: 4px;
    color: #888;
    font-weight: 500;
}

.card-content p {
    font-size: 22px;
    font-weight: 700;
    color: #1e1e2f;
}

.card:nth-child(1) .card-icon {
    background-color: #265df2;
}

.card:nth-child(2) .card-icon {
    background-color: #7cc153;
}

.card:nth-child(3) .card-icon {
    background-color: #f5544c;
}

.card:nth-child(4) .card-icon {
    background-color: #f2c71e;
}

/* ========================================
   PROJECT PAGES
   ======================================== */
.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e1e2f;
    white-space: nowrap;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e1e2f;
}

.project-tabs-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.project-tabs {
    display: flex;
    gap: 12px;
    background-color: white;
    border-radius: 999px;
    padding: 6px 12px;
}

.project-tab {
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #606060;
    background-color: white;
    transition: all 0.2s;
}

.project-tab.active {
    background-color: #eef1ff;
    color: #265df2;
    font-weight: 600;
}

.project-tab:hover:not(.active) {
    background-color: #f0f2f7;
}

.add-project-btn,
.add-btn {
    background-color: #265df2;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.add-project-btn:hover,
.add-btn:hover {
    background-color: #1e4ddc;
}

.add-btn i {
    font-size: 12px;
}

/* ========================================
   TABLES
   ======================================== */
.tasks-table,
.projects-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow-x: auto;
    margin-top: 30px;
}

.projects-table,
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 700px;
}

thead {
    background: #fcfcfc;
    color: #555;
}

th,
td {
    padding: 15px 10px;
    text-align: left;
    white-space: nowrap;
}

thead th {
    font-weight: 600;
}

tbody tr {
    border-bottom: 1px solid #f2f2f2;
}

tbody tr:last-child {
    border-bottom: none;
}

.checkbox-cell {
    width: 30px;
}

/* ========================================
   STATUS BADGES
   ======================================== */
.status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-active,
.status-completed {
    background: #e6f4ee;
    color: #0c9d61;
}

.status-pending,
.status-printing {
    background: #fff6e5;
    color: #f4a100;
}

.status-insofar {
    background: #f2f2f2;
    color: #666;
}

.domain-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* ========================================
   PROJECT ICONS & ACTIONS
   ======================================== */
.project-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #1e1e2f;
}

.project-icon span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.project-icon i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.project-name {
    font-weight: 500;
    color: #1e1e2f;
}

.action-icons i {
    margin-right: 15px;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
}

.action-icons i:hover {
    color: #000;
}

.action-icon {
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.action-icon:hover {
    color: #000;
}

.action-buttons {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.action-btn {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.action-btn:hover {
    background: #eef2ff;
    border-color: #6366f1;
}

.action-btn svg {
    width: 16px;
    height: 16px;
    stroke: #4b5563;
}

/* Project Color Classes */
.Pulse {
    background: #5b4cf0;
}

.Orbit {
    background: #000;
}

.Horizon {
    background: #265df2;
}

.Nimbus {
    background: #333;
}

.Vertex {
    background: #f5544c;
}

.Drift {
    background: #7cc153;
}

.Summit {
    background: #f24e1e;
}

.icon-blue {
    background-color: #265df2;
}

.icon-green {
    background-color: #0c9d61;
}

.icon-purple {
    background-color: #8c52ff;
}

.icon-orange {
    background-color: #ff7b31;
}

.icon-pink {
    background-color: #ff4d8a;
}

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f2f2f2;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination-info {
    font-size: 14px;
    color: #606060;
}

.pagination-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination-btn:hover {
    background: #f7f9fc;
}

.pagination-page {
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination-page.active {
    background: #265df2;
    color: white;
}

.pagination-page:hover:not(.active) {
    background: #f7f9fc;
}

/* ========================================
   EMBED CODE SECTION
   ======================================== */
.embed-code {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-top: 30px;
}

.embed-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e1e2f;
}

.code-snippet {
    background: #f7f9fc;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-family: monospace;
    font-size: 13px;
    color: #333;
    position: relative;
    overflow-x: auto;
}

.copy-button {
    background: #265df2;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 12px;
    display: inline-block;
}

.copy-button:hover {
    background: #1a4ac4;
}

/* ========================================
   MODALS
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal {
    background-color: white;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e1e2f;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 24px;
}

.modal-description {
    color: #606060;
    margin-bottom: 24px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e1e2f;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #265df2;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-btn-save,
.modal-btn-cancel {
    background-color: #f7f9fc;
    color: #606060;
    border: 1px solid #ddd;
}

.modal-btn-save:hover,
.modal-btn-cancel:hover {
    background-color: #f0f2f7;
}

.modal-btn-next {
    background-color: #265df2;
    color: white;
    border: none;
}

.modal-btn-next:hover {
    background-color: #1e4ddc;
}

/* ========================================
   RESPONSIVE - TABLET (768px)
   ======================================== */
@media screen and (max-width: 768px) {
    /* Auth Pages */
    body {
        height: auto;
        min-height: 100vh;
    }

    .card-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .left-side {
        flex: none;
        padding: 2rem 1.5rem;
        min-height: auto;
        order: 1;
    }

    .right-side {
        flex: none;
        padding: 2rem 1.5rem;
        min-height: auto;
        order: 2;
    }

    .left-side > div,
    .left-content-wrapper {
        max-width: 100% !important;
        width: 100%;
        transform: none;
    }

    .image-side {
        transform: none;
        max-width: 100%;
        text-align: center;
    }

    .image-side h2 {
        font-size: 1.5rem;
    }

    .image-side p {
        font-size: 0.9rem;
    }

    .img-right {
        margin: 0 auto;
        max-width: 100%;
        margin-right: auto;
    }

    .techleads-logo h4 {
        font-size: 1.25rem;
    }

    h2.fw-bold {
        font-size: 1.75rem;
    }

    /* Dashboard */
    .overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card {
        padding: 15px;
    }

    .card-content h3 {
        font-size: 13px;
    }

    .card-content p {
        font-size: 18px;
    }

    .card-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .main {
        padding: 20px;
    }

    .tasks-table,
    .projects-section {
        padding: 15px;
    }

    .search-box {
        width: 250px;
    }

    .user-info span {
        display: none;
    }

    .section-header,
    .project-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-top: 70px;
    }

    .project-title {
        text-align: center;
    }

    .project-tabs-container {
        order: 1;
    }

    .add-project-btn,
    .add-btn {
        order: 2;
        align-self: center;
        width: fit-content;
    }

    .project-tabs {
        gap: 8px;
        padding: 4px 8px;
    }

    .project-tab {
        padding: 6px 12px;
        font-size: 13px;
    }

    .projects-table,
    table {
        font-size: 13px;
        min-width: 600px;
    }

    .projects-table th,
    .projects-table td,
    th,
    td {
        padding: 10px 6px;
    }

    .pagination {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .pagination-controls {
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (480px)
   ======================================== */
@media screen and (max-width: 480px) {
    /* Auth Pages */
    .left-side,
    .right-side {
        padding: 1.5rem 1rem;
    }

    .login-form input {
        padding: 0.65rem 0.85rem;
    }

    .btn-primary {
        padding: 0.65rem;
    }

    h2.fw-bold {
        font-size: 1.5rem;
    }

    .image-side h2 {
        font-size: 1.25rem;
    }

    .image-side p {
        font-size: 0.85rem;
    }

    /* Dashboard */
    .menu-toggle {
        display: block;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay.show {
        display: block;
    }

    .main {
        width: 100%;
        padding: 15px;
    }

    .topbar {
        padding: 15px;
    }

    .search-box {
        width: 180px;
    }

    .search-box input {
        padding: 8px 12px;
        padding-right: 30px;
        font-size: 13px;
    }

    .overview {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
    }

    .card {
        padding: 12px;
    }

    .card-content h3 {
        font-size: 12px;
    }

    .card-content p {
        font-size: 16px;
    }

    .card-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .section-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .first-section-heading,
    .project-header {
        margin-top: 60px;
    }

    .project-title {
        font-size: 18px;
    }

    .project-tabs {
        gap: 4px;
        padding: 3px 6px;
    }

    .project-tab {
        padding: 4px 8px;
        font-size: 12px;
    }

    .add-project-btn,
    .add-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .tasks-table,
    .projects-section {
        padding: 10px;
    }

    .projects-table,
    table {
        font-size: 12px;
        min-width: 550px;
    }

    .projects-table th,
    .projects-table td,
    th,
    td {
        padding: 8px 4px;
    }

    .status {
        padding: 4px 8px;
        font-size: 10px;
    }

    .action-icons i,
    .action-icon {
        margin-right: 10px;
        font-size: 12px;
    }

    .project-icon span {
        width: 20px;
        height: 20px;
    }

    .project-icon i {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .project-icon {
        gap: 6px;
    }

    .project-name {
        font-size: 13px;
    }

    .user-info {
        gap: 8px;
    }

    .user-info img {
        width: 28px;
        height: 28px;
    }

    .pagination-info {
        font-size: 12px;
    }

    .pagination-btn,
    .pagination-page {
        padding: 4px 8px;
        font-size: 12px;
    }

    .modal {margin: 10px;
        max-height: 80vh;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-title {
        font-size: 16px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE - EXTRA SMALL (400px)
   ======================================== */
@media (max-width: 400px) {
    .left-side,
    .right-side {
        padding: 1rem 0.75rem;
    }

    .techleads-logo h4 {
        font-size: 1.1rem;
    }

    h2.fw-bold {
        font-size: 1.4rem;
    }

    .image-side h2 {
        font-size: 1.1rem;
    }

    .image-side p {
        font-size: 0.8rem;
    }
}

/* ========================================
   RESPONSIVE - LARGE DESKTOP (1400px+)
   ======================================== */
@media screen and (min-width: 1400px) {
    .overview {
        grid-template-columns: repeat(4, 1fr);
    }

    .main {
        padding: 40px;
    }

    .first-section-heading,
    .project-header {
        margin-top: 90px;
    }
}

/* ========================================
   RESPONSIVE - LANDSCAPE TABLET
   ======================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .card-container {
        flex-direction: row;
        height: 100vh;
    }

    .left-side,
    .right-side {
        padding: 1.5rem;
        flex: 1;
        height: 100vh;
    }

    .image-side {
        transform: scale(0.7);
    }

    .img-right {
        margin-right: -80px;
    }
}

/* ========================================
   RESPONSIVE - LANDSCAPE MOBILE
   ======================================== */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 600px) {
    .card-container {
        flex-direction: row;
        height: 100vh;
    }

    .left-side,
    .right-side {
        padding: 1rem;
        flex: 1;
        height: 100vh;
        order: initial;
    }

    .left-content-wrapper {
        transform: scale(0.75);
        max-width: 380px !important;
    }

    .image-side {
        transform: scale(0.7);
    }

    .img-right {
        margin-right: -50px;
    }

    h2.fw-bold {
        font-size: 1.4rem;
    }

    .image-side h2 {
        font-size: 1.2rem;
    }

    .login-form input {
        padding: 0.5rem 0.7rem;
    }

    .btn-primary {
        padding: 0.6rem;
    }

    .row {
        flex-direction: row;
    }

    .row .col {
        margin-bottom: 0.5rem;
    }
}

/* ========================================
   RESPONSIVE - MEDIUM SCREENS (992px)
   ======================================== */
@media (max-width: 992px) {
    .left-side,
    .right-side {
        padding: 2rem;
    }

    .left-content-wrapper {
        transform: scale(0.85);
        max-width: 350px;
    }

    .image-side {
        transform: scale(0.9);
        max-width: 450px;
    }

    .img-right {
        margin-right: -50px;
        max-width: 400px;
    }
}

/* ========================================
   RESPONSIVE - SMALL SCREENS (576px)
   ======================================== */
@media (max-width: 576px) {
    .left-side,
    .right-side {
        padding: 1.5rem 1rem;
    }

    .login-form input {
        padding: 0.65rem 0.85rem;
    }

    .btn-primary {
        padding: 0.65rem;
    }

    h2.fw-bold {
        font-size: 1.5rem;
    }

    .image-side h2 {
        font-size: 1.25rem;
    }

    .image-side p {
        font-size: 0.85rem;
    }

    .row .col {
        margin-bottom: 0.75rem;
    }

    .row {
        flex-direction: column;
    }

    .row .col {
        max-width: 100%;
        flex-basis: 100%;
    }
}
