﻿/* ================================================
   Company Registration Page - Premium Design
   Supports: Light/Dark modes, LTR/RTL (EN/AR)
   ================================================ */

/* Hide empty validation boxes */
.company-register-page .validation-summary:empty,
.company-register-page .validation-summary:not(:has(*)),
.company-register-page .alert-danger:empty,
.company-register-page .alert-danger:not(:has(*)) {
    display: none !important;
}

/* CSS Variables */
:root {
    --cr-primary: #209aa2;
    --cr-primary-dark: #205b5f;
    --cr-primary-light: #86b7ba;
    --cr-primary-lightest: #FFF1E3;
    --cr-gradient: linear-gradient(135deg, #209aa2 0%, #205b5f 100%);
    --cr-gradient-soft: linear-gradient(135deg, #205b5f 0%, #209aa2 100%);
    --cr-success: #86b7ba;
    --cr-success-light: #e8f0f1;
    --cr-warning: #e78a56;
    --cr-error: #EF4444;
    --cr-bg-page: linear-gradient(135deg, #f5f9f9 0%, #FFF1E3 50%, #f5f9f9 100%);
    --cr-bg-card: #ffffff;
    --cr-bg-section: #f5f9f9;
    --cr-bg-input: #ffffff;
    --cr-text-primary: #205b5f;
    --cr-text-secondary: #6d8d90;
    --cr-text-muted: #9cb5b8;
    --cr-border: #dce8e9;
    --cr-border-focus: #209aa2;
    --cr-shadow-sm: 0 1px 3px rgba(32, 154, 162, 0.08);
    --cr-shadow-md: 0 4px 20px rgba(32, 154, 162, 0.12);
    --cr-shadow-lg: 0 15px 50px rgba(32, 154, 162, 0.2);
    --cr-shadow-input: 0 0 0 4px rgba(32, 154, 162, 0.1);
    --cr-radius-sm: 8px;
    --cr-radius-md: 12px;
    --cr-radius-lg: 16px;
    --cr-radius-xl: 24px;
}

/* ================================================
   Page Layout
   ================================================ */
.company-register-page {
    min-height: 100vh;
    background: var(--cr-bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.company-register-page::before,
.company-register-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.company-register-page::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(32, 154, 162, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.company-register-page::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(32, 154, 162, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

/* ================================================
   Main Container - Split Layout
   ================================================ */
.register-split-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    width: 100%;
    max-width: 1200px;
    min-height: 700px;
    background: var(--cr-bg-card);
    border-radius: var(--cr-radius-xl);
    overflow: hidden;
    box-shadow: var(--cr-shadow-lg);
    position: relative;
    z-index: 1;
    animation: containerSlide 0.6s ease-out;
}

@keyframes containerSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   Left Panel - Branding
   ================================================ */
.register-branding-panel {
    background: var(--cr-gradient-soft);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Animated background */
.register-branding-panel::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    top: -100%;
    left: -100%;
    animation: floatBg 25s linear infinite;
}

@keyframes floatBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.branding-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Logo */
.brand-logo-wrap {
    margin-bottom: 30px;
}

.brand-logo-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.brand-logo-circle i {
    font-size: 2rem;
    color: white;
}

.brand-app-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Illustration */
.brand-illustration {
    margin: 30px 0;
    position: relative;
}

.brand-illustration svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Text */
.brand-headline {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.brand-subheadline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0 0 30px;
    line-height: 1.6;
}

/* Features list */
.brand-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Floating shapes */
.floating-decor {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.decor-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -30px;
    animation: floatShape1 8s ease-in-out infinite;
}

.decor-2 {
    width: 80px;
    height: 80px;
    bottom: 100px;
    left: -25px;
    animation: floatShape2 10s ease-in-out infinite;
}

.decor-3 {
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 50px;
    animation: floatShape3 7s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, 20px) scale(1.1); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}

/* ================================================
   Right Panel - Form
   ================================================ */
.register-form-panel {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 95vh;
}

.form-panel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Form Header */
.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cr-text-primary);
    margin: 0 0 8px;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--cr-text-secondary);
    margin: 0;
}

/* ================================================
   Progress Steps
   ================================================ */
.step-progress {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: var(--cr-border);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--cr-border);
    z-index: 1;
    transition: background 0.4s ease;
}

.progress-step.completed:not(:last-child)::after {
    background: var(--cr-primary);
}

.step-indicator {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cr-bg-card);
    border: 3px solid var(--cr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cr-text-muted);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.step-indicator i {
    display: none;
    font-size: 1rem;
}

.step-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cr-text-muted);
    text-align: center;
    transition: all 0.3s ease;
}

/* Active step */
.progress-step.active .step-indicator {
    background: var(--cr-gradient);
    border-color: var(--cr-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(32, 154, 162, 0.4);
    transform: scale(1.1);
}

.progress-step.active .step-text {
    color: var(--cr-primary);
    font-weight: 700;
}

/* Completed step */
.progress-step.completed .step-indicator {
    background: var(--cr-success);
    border-color: var(--cr-success);
    color: white;
}

.progress-step.completed .step-indicator .step-num {
    display: none;
}

.progress-step.completed .step-indicator i {
    display: block;
}

.progress-step.completed .step-text {
    color: var(--cr-success);
}

/* ================================================
   Form Sections
   ================================================ */
.form-step-section {
    display: none;
    animation: sectionFade 0.4s ease;
}

.form-step-section.active {
    display: block;
}

@keyframes sectionFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================
   Form Groups
   ================================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 0;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Labels */
.form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cr-text-primary);
    margin-bottom: 8px;
}

.required-mark {
    color: var(--cr-error);
    font-weight: 700;
}

.optional-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--cr-text-muted);
    background: var(--cr-border);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Input wrapper with icon */
.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cr-text-muted);
    font-size: 1.1rem;
    transition: color 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

/* Inputs */
.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid var(--cr-border);
    border-radius: var(--cr-radius-md);
    font-size: 0.95rem;
    color: var(--cr-text-primary);
    background: var(--cr-bg-input);
    transition: all 0.3s ease;
    font-family: inherit;
}

/* Password field - ensure proper bullet display */
.form-input[type="password"] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.15em;
}

.form-input:not(.has-icon),
.form-select:not(.has-icon) {
    padding-left: 16px;
}

.form-input.has-icon {
    padding-left: 48px;
}

.form-input:hover,
.form-select:hover {
    border-color: var(--cr-primary-light);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--cr-primary);
    box-shadow: var(--cr-shadow-input);
}

.input-wrapper:focus-within .input-icon {
    color: var(--cr-primary);
}

.form-input::placeholder {
    color: var(--cr-text-muted);
}

/* Hide select icons - they overlap with text */
.input-wrapper .input-icon + .form-select,
.form-select.has-icon {
    padding-left: 16px !important;
}

/* Hide icon when next to select */
.input-wrapper:has(.form-select) .input-icon {
    display: none;
}

/* Fallback for browsers that don't support :has() */
.input-wrapper .input-icon + .form-select ~ .input-icon,
.form-select.has-icon + .input-icon {
    display: none;
}

/* Select */
.company-register-page .form-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%236B7280' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 18px !important;
    padding-right: 50px !important;
    padding-left: 16px !important;
}

/* Textarea */
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--cr-border);
    border-radius: var(--cr-radius-md);
    font-size: 0.95rem;
    color: var(--cr-text-primary);
    background: var(--cr-bg-input);
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-textarea:hover {
    border-color: var(--cr-primary-light);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--cr-primary);
    box-shadow: var(--cr-shadow-input);
}

/* ================================================
   File Upload
   ================================================ */
.file-upload-area {
    position: relative;
}

.file-input-hidden {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 2px dashed var(--cr-border);
    border-radius: var(--cr-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(32, 154, 162, 0.03) 0%, rgba(32, 154, 162, 0.08) 100%);
}

.file-upload-label:hover {
    border-color: var(--cr-primary);
    background: linear-gradient(135deg, rgba(32, 154, 162, 0.08) 0%, rgba(32, 154, 162, 0.15) 100%);
}

.file-upload-label i {
    font-size: 2rem;
    color: var(--cr-primary);
    margin-bottom: 10px;
}

.file-upload-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cr-text-primary);
    margin-bottom: 4px;
}

.file-upload-hint {
    font-size: 0.8rem;
    color: var(--cr-text-muted);
}

/* ================================================
   Validation
   ================================================ */
.validation-error {
    color: var(--cr-error);
    font-size: 0.8rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.validation-error:empty {
    display: none;
}

.validation-summary {
    background: #FEE2E2;
    border: 2px solid #FECACA;
    color: #991B1B;
    padding: 14px 18px;
    border-radius: var(--cr-radius-md);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.validation-summary:empty,
.validation-summary:not(:has(li)) {
    display: none !important;
}

.validation-summary ul {
    margin: 0;
    padding-left: 20px;
}

/* ================================================
   Navigation Buttons
   ================================================ */
.form-navigation {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--cr-border);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--cr-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    flex: 1;
}

.btn-prev {
    background: var(--cr-bg-card);
    color: var(--cr-text-secondary);
    border: 2px solid var(--cr-border);
    flex: 0.8;
}

.btn-prev:hover {
    border-color: var(--cr-primary);
    color: var(--cr-primary);
    background: var(--cr-primary-lightest);
}

.btn-next {
    background: var(--cr-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(32, 154, 162, 0.3);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 154, 162, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #86b7ba 0%, #205b5f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(134, 183, 186, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(134, 183, 186, 0.4);
}

/* ================================================
   Form Footer
   ================================================ */
.form-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--cr-border);
}

.form-footer p {
    color: var(--cr-text-secondary);
    font-size: 0.9rem;
    margin: 6px 0;
}

.form-footer a {
    color: var(--cr-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: var(--cr-primary-dark);
    text-decoration: underline;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 1024px) {
    .register-split-container {
        grid-template-columns: 380px 1fr;
    }
    
    .register-form-panel {
        padding: 35px 40px;
    }
}

@media (max-width: 900px) {
    .register-split-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .register-branding-panel {
        display: none;
    }
    
    .register-form-panel {
        padding: 35px 30px;
        max-height: none;
    }
}

@media (max-width: 600px) {
    .company-register-page {
        padding: 16px;
        align-items: flex-start;
    }
    
    .register-split-container {
        border-radius: var(--cr-radius-lg);
    }
    
    .register-form-panel {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .step-text {
        font-size: 0.7rem;
    }
    
    .step-indicator {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn-nav {
        width: 100%;
    }
    
    .btn-prev {
        order: 2;
    }
}

/* ================================================
   RTL Support (Arabic)
   ================================================ */
[dir="rtl"] .company-register-page,
html[lang="ar"] .company-register-page {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .register-split-container,
html[lang="ar"] .register-split-container {
    direction: rtl;
}

[dir="rtl"] .input-icon,
html[lang="ar"] .input-icon {
    left: auto;
    right: 16px;
}

[dir="rtl"] .form-input.has-icon,
html[lang="ar"] .form-input.has-icon {
    padding-left: 16px;
    padding-right: 48px;
}

[dir="rtl"] .company-register-page .form-select,
html[lang="ar"] .company-register-page .form-select {
    background-position: left 14px center !important;
    padding-right: 16px !important;
    padding-left: 45px !important;
}

[dir="rtl"] .progress-step:not(:last-child)::after,
html[lang="ar"] .progress-step:not(:last-child)::after {
    left: auto;
    right: 50%;
}

[dir="rtl"] .btn-prev i,
[dir="rtl"] .btn-next i,
html[lang="ar"] .btn-prev i,
html[lang="ar"] .btn-next i {
    transform: scaleX(-1);
}

[dir="rtl"] .brand-features,
html[lang="ar"] .brand-features {
    text-align: right;
}

[dir="rtl"] .feature-item,
html[lang="ar"] .feature-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .validation-summary ul,
html[lang="ar"] .validation-summary ul {
    padding-right: 20px;
    padding-left: 0;
}

/* ================================================
   Dark Theme
   ================================================ */
[data-theme="dark"] {
    --cr-bg-page: linear-gradient(135deg, #205b5f 0%, #1a4a4e 100%);
    --cr-bg-card: #152e31;
    --cr-bg-section: #1a3a3d;
    --cr-bg-input: #1e4446;
    --cr-text-primary: #eef4f4;
    --cr-text-secondary: #9cb5b8;
    --cr-text-muted: #6d8d90;
    --cr-border: #25504e;
    --cr-shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .company-register-page::before,
[data-theme="dark"] .company-register-page::after {
    opacity: 0.5;
}

[data-theme="dark"] .step-progress::before {
    background: var(--cr-border);
}

[data-theme="dark"] .step-indicator {
    background: var(--cr-bg-input);
    border-color: var(--cr-border);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
    background: var(--cr-bg-input);
    border-color: var(--cr-border);
    color: var(--cr-text-primary);
}

[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder {
    color: var(--cr-text-muted);
}

[data-theme="dark"] .company-register-page .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%236b6b80' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

[data-theme="dark"] .company-register-page .form-select option {
    background: var(--cr-bg-input);
    color: var(--cr-text-primary);
}

[data-theme="dark"] .file-upload-label {
    background: linear-gradient(135deg, rgba(32, 154, 162, 0.08) 0%, rgba(32, 154, 162, 0.15) 100%);
    border-color: var(--cr-border);
}

[data-theme="dark"] .file-upload-label:hover {
    border-color: var(--cr-primary);
    background: linear-gradient(135deg, rgba(32, 154, 162, 0.15) 0%, rgba(32, 154, 162, 0.25) 100%);
}

[data-theme="dark"] .file-upload-text {
    color: var(--cr-text-primary);
}

[data-theme="dark"] .btn-prev {
    background: var(--cr-bg-input);
    border-color: var(--cr-border);
    color: var(--cr-text-secondary);
}

[data-theme="dark"] .btn-prev:hover {
    background: rgba(32, 154, 162, 0.15);
    border-color: var(--cr-primary);
    color: var(--cr-primary-light);
}

[data-theme="dark"] .form-navigation {
    border-top-color: var(--cr-border);
}

[data-theme="dark"] .form-footer {
    border-top-color: var(--cr-border);
}

[data-theme="dark"] .form-footer a {
    color: var(--cr-primary-light);
}

[data-theme="dark"] .optional-badge {
    background: var(--cr-border);
    color: var(--cr-text-muted);
}

[data-theme="dark"] .validation-summary {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
}

/* Dark + RTL */
[data-theme="dark"][dir="rtl"] .company-register-page .form-select,
[data-theme="dark"] html[lang="ar"] .company-register-page .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%236b6b80' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
    background-position: left 14px center !important;
}
