/* ============================================================
   Golden Accounting System — Modern Login Page Design System
   Premium SaaS / Enterprise Authentication UI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Custom Properties (Theme Tokens) ---- */
:root {
    /* Light mode (default) */
    --color-bg: #f0f2f5;
    --color-surface: #ffffff;
    --color-surface-hover: #f8f9fb;
    --color-text-primary: #1a1d28;
    --color-text-secondary: #5f6b7a;
    --color-text-muted: #8b95a5;
    --color-border: #e2e6ed;
    --color-border-focus: #4f6ef7;
    --color-input-bg: #f5f6fa;
    --color-input-bg-focus: #ffffff;
    --color-accent: #4f6ef7;
    --color-accent-hover: #3b54d4;
    --color-accent-light: #eef1ff;
    --color-error: #e5484d;
    --color-error-bg: #fef2f2;
    --color-success: #30a46c;

    /* Left panel (branding side) */
    --brand-gradient-start: #0f172a;
    --brand-gradient-mid: #1e293b;
    --brand-gradient-end: #0f2546;
    --brand-accent: #6d8cff;
    --brand-accent-soft: rgba(109, 140, 255, 0.12);
    --brand-text: rgba(255,255,255,0.92);
    --brand-text-muted: rgba(255,255,255,0.55);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-xl: 0 24px 56px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.07);
    --shadow-input: 0 0 0 3px rgba(79,110,247,0.12);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.8125rem;
    --font-size-base: 0.9375rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Spacing scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Layout */
    --login-max-width: 1100px;
    --form-width: 420px;
}

/* ---- Dark Mode ---- */
[data-theme="dark"] {
    --color-bg: #0d1117;
    --color-surface: #161b22;
    --color-surface-hover: #1c2333;
    --color-text-primary: #e6edf3;
    --color-text-secondary: #8b949e;
    --color-text-muted: #6e7681;
    --color-border: #30363d;
    --color-border-focus: #6d8cff;
    --color-input-bg: #0d1117;
    --color-input-bg-focus: #161b22;
    --color-accent: #6d8cff;
    --color-accent-hover: #8da4ff;
    --color-accent-light: rgba(109,140,255,0.12);
    --color-error: #f87171;
    --color-error-bg: rgba(248,113,113,0.10);
    --color-success: #4ade80;

    --brand-gradient-start: #070b14;
    --brand-gradient-mid: #0f172a;
    --brand-gradient-end: #0a1628;

    --shadow-card: 0 1px 3px rgba(0,0,0,0.30), 0 8px 32px rgba(0,0,0,0.25);
    --shadow-input: 0 0 0 3px rgba(109,140,255,0.20);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.15);
}

/* ---- Global Reset ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ---- Login Page Container ---- */
.login-page {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* ============================================================
   LEFT PANEL — Branding / Welcome
   ============================================================ */
.login-branding {
    display: none;
    flex: 1;
    position: relative;
    background: linear-gradient(160deg, var(--brand-gradient-start) 0%, var(--brand-gradient-mid) 45%, var(--brand-gradient-end) 100%);
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: var(--space-12);
}

/* Animated gradient overlay */
.login-branding::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(109,140,255,0.13) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 70% 80%, rgba(79,110,247,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(99,179,237,0.07) 0%, transparent 70%);
    animation: brandPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes brandPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Floating decorative shapes */
.brand-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.brand-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--brand-accent-soft);
    filter: blur(40px);
    animation: floatShape 20s ease-in-out infinite;
}

.brand-shape:nth-child(1) {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
    animation-delay: 0s;
}

.brand-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: -40px;
    animation-delay: -7s;
    animation-duration: 24s;
}

.brand-shape:nth-child(3) {
    width: 160px;
    height: 160px;
    top: 45%;
    right: 20%;
    animation-delay: -14s;
    animation-duration: 18s;
}

.brand-shape:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 25%;
    right: -30px;
    animation-delay: -5s;
    animation-duration: 22s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.15); }
    50% { transform: translate(-20px, 20px) scale(0.90); }
    75% { transform: translate(15px, 30px) scale(1.05); }
}

.brand-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 440px;
}

.brand-logo {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform var(--transition-base);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-logo img {
    width: 108px;
    height: 108px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.brand-welcome {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-text);
    margin-bottom: var(--space-2);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.brand-welcome-ar {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--brand-text);
    margin-bottom: var(--space-3);
    line-height: 1.4;
    opacity: 0.85;
    font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
}

.brand-subtitle {
    font-size: var(--font-size-base);
    color: var(--brand-text-muted);
    margin-bottom: var(--space-8);
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
}

.brand-divider {
    width: 48px;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 2px;
    margin: 0 auto var(--space-6);
    opacity: 0.7;
}

.brand-info {
    text-align: center;
    padding: var(--space-4) 0;
}

.brand-info-item {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--brand-text-muted);
    margin-bottom: var(--space-1);
    line-height: 1.6;
}

/* Brand footer */
.brand-footer {
    position: absolute;
    bottom: var(--space-8);
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.brand-footer-text {
    font-size: var(--font-size-xs);
    color: var(--brand-text-muted);
    opacity: 0.6;
}

/* ============================================================
   RIGHT PANEL — Login Form
   ============================================================ */
.login-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    background: var(--color-bg);
    position: relative;
}

.login-card {
    width: 100%;
    max-width: var(--form-width);
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-8);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    position: relative;
    transition: box-shadow var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.login-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Card decorative top accent */
.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--space-10);
    right: var(--space-10);
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), rgba(79,110,247,0.2), transparent);
    border-radius: 0 0 2px 2px;
    opacity: 0.8;
}

/* Theme toggle button */
.theme-toggle {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-input-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    transition: all var(--transition-fast);
    z-index: 5;
}

.theme-toggle:hover {
    background: var(--color-surface-hover);
    color: var(--color-text-primary);
    border-color: var(--color-text-muted);
}

.theme-toggle:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Form header */
.login-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.login-header-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--color-accent);
    font-size: 1.4rem;
}

.login-header h1 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}

.login-header p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Form groups */
.form-group {
    margin-bottom: var(--space-5);
    position: relative;
}

.form-group:last-of-type {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
    transition: color var(--transition-fast);
}

/* Input wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: var(--space-4);
    color: var(--color-text-muted);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
    transition: color var(--transition-fast);
}

/* Modern input styling */
.modern-input {
    width: 100%;
    height: 48px;
    padding: 0 var(--space-4) 0 44px;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    background: var(--color-input-bg);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--transition-fast);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.modern-input::placeholder {
    color: var(--color-text-muted);
    font-weight: var(--font-weight-regular);
}

.modern-input:hover {
    border-color: var(--color-text-muted);
    background: var(--color-surface-hover);
}

.modern-input:focus {
    border-color: var(--color-border-focus);
    background: var(--color-input-bg-focus);
    box-shadow: var(--shadow-input);
}

.modern-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--color-accent);
}

/* Password toggle button */
.password-toggle {
    position: absolute;
    right: var(--space-2);
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    z-index: 2;
}

.password-toggle:hover {
    color: var(--color-text-secondary);
    background: var(--color-surface-hover);
}

.password-toggle:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
}

.password-input-wrapper .modern-input {
    padding-right: 46px;
}

/* ---- Row: Remember me + Forgot password ---- */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
    gap: var(--space-2);
}

/* Custom checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

.checkbox-mark {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-input-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    position: relative;
}

.custom-checkbox input:checked ~ .checkbox-mark {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.checkbox-mark::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.custom-checkbox input:checked ~ .checkbox-mark::after {
    opacity: 1;
}

.custom-checkbox input:focus-visible ~ .checkbox-mark {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.checkbox-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-regular);
}

/* Forgot password link */
.forgot-link {
    font-size: var(--font-size-sm);
    color: var(--color-accent);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.forgot-link:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.forgot-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ---- Submit Button ---- */
.login-submit {
    width: 100%;
    height: 48px;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-accent) 0%, #3b54d4 100%);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.login-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.login-submit:hover {
    background: linear-gradient(135deg, #5a7af8 0%, var(--color-accent-hover) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79,110,247,0.35);
}

.login-submit:hover::before {
    opacity: 1;
}

.login-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(79,110,247,0.25);
}

.login-submit:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Loading state */
.login-submit.loading {
    pointer-events: none;
    opacity: 0.85;
    color: transparent;
}

.login-submit .spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.login-submit.loading .spinner {
    display: block;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- Alert / Error Message ---- */
.login-alert {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-5);
    background: var(--color-error-bg);
    border: 1px solid rgba(229,72,77,0.25);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--color-error);
    line-height: 1.5;
    animation: alertSlideIn 0.3s ease-out;
}

/* Error icon via pseudo-element */
.login-alert::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Hide when empty (no error) */
.login-alert:empty {
    display: none;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Visitor Count Badge ---- */
.visitor-badge {
    text-align: center;
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
}

.visitor-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    background: var(--color-input-bg);
    padding: var(--space-2) var(--space-3);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.visitor-badge-inner i {
    font-size: 0.7rem;
    color: var(--color-success);
}

.visitor-badge-inner .visitor-count {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
}

/* ---- Copyright Footer ---- */
.login-footer {
    text-align: center;
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
}

.login-footer p {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ---- Manager Checkbox Row ---- */
.manager-row {
    margin-bottom: var(--space-5);
}

/* ---- ASP.NET Validator styling override ---- */
#RequiredFieldValidator1,
#RequiredFieldValidator2 {
    font-size: var(--font-size-xs);
    margin-top: var(--space-1);
    color: var(--color-error);
}

/* ---- Company Data Label ---- */
.company-data-inline {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--brand-text-muted);
    text-align: center;
    margin-top: var(--space-2);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Desktop (≥1024px): Split Screen ---- */
@media (min-width: 1024px) {
    .login-branding {
        display: flex;
    }

    .login-form-panel {
        flex: 0 0 520px;
        max-width: 520px;
    }

    .login-card {
        padding: var(--space-12) var(--space-10);
    }
}

/* ---- Large Desktop (≥1400px) ---- */
@media (min-width: 1400px) {
    .login-form-panel {
        flex: 0 0 560px;
        max-width: 560px;
    }

    .login-branding {
        padding: var(--space-16);
    }

    .brand-welcome {
        font-size: var(--font-size-3xl);
    }

    .login-card {
        padding: var(--space-16) var(--space-12);
    }
}

/* ---- Tablet (768px – 1023px): Centered Card ---- */
@media (min-width: 768px) and (max-width: 1023px) {
    .login-form-panel {
        padding: var(--space-10);
    }

    .login-card {
        max-width: 460px;
        padding: var(--space-8) var(--space-8);
    }
}

/* ---- Mobile (<768px): Full Width Stack ---- */
@media (max-width: 767px) {
    .login-page {
        padding: 0;
    }

    .login-form-panel {
        padding: var(--space-4);
        align-items: flex-start;
        padding-top: var(--space-10);
    }

    .login-card {
        max-width: 100%;
        padding: var(--space-6) var(--space-5);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

    .login-card::before {
        left: var(--space-6);
        right: var(--space-6);
    }

    .login-header h1 {
        font-size: 1.35rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .theme-toggle {
        top: var(--space-3);
        right: var(--space-3);
    }
}

/* ---- Small Mobile (<380px) ---- */
@media (max-width: 379px) {
    .login-form-panel {
        padding: var(--space-3);
        padding-top: var(--space-6);
    }

    .login-card {
        padding: var(--space-5) var(--space-4);
        border-radius: var(--radius-lg);
    }

    .modern-input {
        height: 46px;
        font-size: var(--font-size-sm);
    }

    .login-submit {
        height: 46px;
        font-size: var(--font-size-sm);
    }
}

/* ---- Accessibility: Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---- Focus visible (keyboard navigation) ---- */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ---- Print styles ---- */
@media print {
    .login-branding { display: none; }
    .login-form-panel { max-width: 100%; }
}
