
  * {
      font-family: 'system-ui', sans-serif;
  }
  

.main-container {
    min-height: 100vh;
 }

/* Left Side - Sign In Form */
.signin-section {
    width: 100%;
    background: white;
    padding: 60px 80px 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.ltr .icon-lang{
    margin-right: 10px;
    margin-left: 0px;
}

.rtl .icon-lang{
    margin-right: 0px;
    margin-left: 10px;
}

.forgot-password-section{
    max-width: 560px;
    width: fit-content;
    background: #ffffffc2;
    padding: 40px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.forgot-password-section input{
    width: 100%;
}

.forgot-password-section button,
.forgot-password-section .button{
    width: 450px;
    text-decoration: none;
}



.logo {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffa726, #ff9800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 16px;
    background: white;
    border-radius: 2px;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff9800;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-text .arabic {
    font-size: 20px;
    margin-right: 8px;
}

.signin-title {
    font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.signin-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 40px;
    font-family: system-ui;
    font-weight: 200;
}

.user-type-toggle {
    display: flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 32px;
}

.toggle-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: white;
    color: #1a1a1a;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.form-label {
    font-weight: 400;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: #ffa726;
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #6b7280;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: #ffa726;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.otp-input {
    width: 80px !important;
    height: 80px  !important;;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    background-color: #fff;
    margin: 0 8px;
}

.otp-input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.otp-input:hover {
    border-color: #adb5bd;
}

.otp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.signin-btn {
    width: 100%;
    background: #FEB715;
    border: none;
    border-radius: 8px;
    padding: 14px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.2s;
}

.signin-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 167, 38, 0.3);
}

.google-btn {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    margin-bottom: 32px;
    transition: all 0.2s;
}

.google-btn:hover {
    background: #f9fafb;
    color: #374151;
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.form-toggle-link {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
}

.form-toggle-link a {
    color: #ffa726;
    text-decoration: none;
    font-weight: 500;
}

.footer-text {   
    color: #9ca3af;
    font-size: 12px;
    margin-top: 40px;
}

/* Right Side - Dashboard Preview */
.dashboard-section {
    flex: 1;
    background: #F2F4F7;
    position: relative;
    overflow: hidden;
}

.dashboard-frame {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 3px solid #1f2937;
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.dashboard-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-logo {
    display: flex;
    align-items: center;
}

.dashboard-logo .logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.dashboard-logo .logo-text {
    font-size: 18px;
}

.search-bar {
    flex: 1;
    max-width: 400px;
    margin: 0 40px;
    position: relative;
}

.search-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 8px 16px 8px 40px;
    font-size: 14px;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.dashboard-content {
    display: flex;
    height: calc(100% - 73px);
}

.sidebar {
    width: 240px;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding: 24px 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: #fef3e2;
    color: #f59e0b;
}

.sidebar-item i {
    width: 20px;
    margin-right: 12px;
}

.main-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb-custom a {
    color: #ffa726;
    text-decoration: none;
}

.breadcrumb-custom span {
    margin: 0 8px;
    color: #d1d5db;
}

.page-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.stats-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    flex: 1;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-change {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.stat-change.positive {
    color: #10b981;
}

.stat-change i {
    margin-right: 4px;
}

.status-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.status-tab {
    padding: 12px 0;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.status-tab.active {
    color: #ffa726;
    border-bottom-color: #ffa726;
}

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

.table-search {
    display: flex;
    align-items: center;
    gap: 16px;
}

.table-search input {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    width: 200px;
}

.category-dropdown {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    background: white;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.product-table th {
    background: #f9fafb;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-table td {
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
}

.product-info {
    display: flex;
    align-items: center;
}

.product-icon {
    width: 32px;
    height: 32px;
    background: #ffa726;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 14px;
}

.product-details h6 {
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    font-size: 14px;
}

.product-details small {
    color: #6b7280;
    font-size: 12px;
}

.user-profile {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
}

.user-info h6 {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.user-info small {
    font-size: 10px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-section {
        display: none;
    }
    .signin-section {
        flex: 1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .signin-section {
        padding: 40px 70px;
    }
    
    .otp-input {
        width: 60px !important;;
        height: 60px !important;;
        font-size: 1.5rem;
        margin: 0 4px;
    }

    .main-container {
        flex-direction: column;
    }

    .forgot-password-section input{
        width: 100%;
    }
    .forgot-password-section button,
    .forgot-password-section .button{
        width: 100%;
    }

    .forgot-password-section{
        padding: 40px 32px
    }

    .forgot-password-section .featured_icon img{
        width: 60px !important;
    }
}

@media (max-width: 480px) {
    .signin-section {
        padding: 24px 30px;
    }
    
    .signin-title {
        font-size: 24px;
    }
    
    .user-type-toggle {
        flex-direction: column;
        gap: 4px;
    }
}
