:root {
    --bg-primary: #0B1120;
    --bg-secondary: #0f172a;
    --accent-orange: #f59e0b;
    --accent-orange-hover: #d97706;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Left Side Styling */

.content-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.left-panel {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--accent-orange);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.premium-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
    border-radius: 50%;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.icon-shield {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-orange);
}

.icon-clock {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.icon-star {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
}

.stars {
    color: var(--accent-orange);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.7rem;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.stat-number {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Right Side - Login Form */
.right-panel {
    background-color: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.login-container {
    width: 100%;
    max-width: 520px;
}

.login-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.brand-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}

.brand-text {
    text-align: left;
}

.brand-name {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.welcome-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 1rem;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 12px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    height: auto;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange);
    color: white;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 10;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
}

.form-label-custom {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.forgot-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--accent-orange-hover);
    text-decoration: underline;
}

.btn-signin {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: white;
    padding: 0.875rem;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
    color: white;
}

/* .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 1.5rem 0;
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .divider::before {
            margin-right: 1rem;
        }

        .divider::after {
            margin-left: 1rem;
        } */

/* .btn-social {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.625rem;
            border-radius: 10px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s;
        } */

.btn-social:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-1px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .left-panel {
        padding: 3rem 2rem;
    }

    .login-card {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .left-panel {
        display: none !important;
    }

    /* .right-panel {
                min-height: auto;
                padding: 2rem 1.5rem;
                background: linear-gradient(to bottom, #0f172a, #0B1120);
            } */

    .main-heading {
        font-size: 2rem;
    }

    .login-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    /* Stack layout for mobile */
    .row {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .testimonial-card {
        margin-bottom: 1rem;
    }

    .stat-item {
        margin-bottom: 0.5rem;
    }

    .right-panel {
        padding: 1rem;
    }
}

/* iPad Specific Optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .left-panel {
        display: none !important;
    }

    .main-heading {
        font-size: 2.25rem;
    }

    .feature-desc {
        font-size: 0.8rem;
    }
}