/* Comptably Dark Theme Design */
:root {
    --primary-color: #0070f3;
    --primary-hover: #0051cc;
    --background: #0a0a0a;
    --surface: #1a1a1a;
    --surface-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #333333;
    --border-hover: #444444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --radius: 8px;
    --radius-lg: 12px;
    --gradient-primary: linear-gradient(135deg, #0070f3, #7928ca);
    --gradient-surface: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

* {
    box-sizing: border-box; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--background) !important;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 112, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(121, 40, 202, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 112, 243, 0.05) 0%, transparent 50%) !important;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Main Layout */
.main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
}

.auth-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Left Side - Hero Section */
.hero-section {
    padding-right: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    text-shadow: 0 0 20px rgba(0, 112, 243, 0.2);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
    max-width: 90%;
    opacity: 0.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.feature-item:hover {
    transform: translateX(3px);
    color: var(--primary-color);
}

.feature-item::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    margin-right: 0.75rem;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

/* Right Side - Login Form */
.auth-card {
    background: var(--gradient-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    width: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--surface);
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.password-field {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.password-toggle:hover {
    color: var(--primary-color);
    background: rgba(0, 112, 243, 0.1);
}

.password-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 112, 243, 0.3);
}

.password-field .form-input {
    padding-right: 3rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
    background: var(--surface-hover);
}

.form-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.submit-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

.auth-links {
    text-align: center;
    font-size: 0.85rem;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.auth-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.auth-links a:hover::after {
    width: 100%;
}

.auth-links a:hover {
    color: var(--primary-hover);
    text-shadow: 0 0 8px rgba(0, 112, 243, 0.3);
}

.auth-links p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.4;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid;
    text-align: center;
    letter-spacing: 0.01em;
}

.alert-danger {
    background: rgba(220, 38, 38, 0.15);
    color: #fca5a5;
    border-color: rgba(220, 38, 38, 0.4);
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.2);
}

/* Floating Elements Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Responsive Design */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    .auth-container {
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .auth-card {
        padding: 2.25rem;
        max-width: 400px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .hero-section {
        padding-right: 0;
        text-align: center;
        order: 2;
    }
    
    .auth-card {
        order: 1;
        padding: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .feature-item::before {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        margin-right: 0.75rem;
    }
    
    .auth-title {
        font-size: 1.625rem;
    }
    
    .auth-subtitle {
        font-size: 0.85rem;
    }
    
    .form-input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* Mobile - Hide hero section, show only login */
@media (max-width: 576px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 1rem;
        min-height: 100vh;
        align-items: center;
    }
    
    .hero-section {
        display: none;
    }
    
    .auth-card {
        order: 1;
        padding: 2rem 1.5rem;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    
    .auth-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .auth-subtitle {
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .auth-links {
        font-size: 0.8rem;
    }
    
    .auth-links p {
        margin-bottom: 0.5rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* Large Mobile */
@media (max-width: 576px) {
    .auth-container {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .auth-card {
        padding: 2rem;
        margin: 0 0.5rem;
    }
    
    .feature-item {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .auth-title {
        font-size: 1.875rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .auth-links {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main {
        padding: 1rem 0;
    }
    
    .auth-container {
        padding: 0 0.75rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .auth-card {
        padding: 1.75rem;
        margin: 0;
        border-radius: var(--radius);
    }
    
    .auth-header {
        margin-bottom: 2rem;
    }
    
    .auth-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .auth-subtitle {
        font-size: 0.95rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .form-input {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-width: 1px;
    }
    
    .submit-btn {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .auth-links {
        font-size: 0.85rem;
    }
    
    .auth-links p {
        margin-bottom: 0.75rem;
    }
    
    .alert {
        padding: 1rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .feature-item::before {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
        margin-right: 0.75rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .auth-container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .auth-card {
        padding: 1.5rem;
    }
    
    .auth-title {
        font-size: 1.625rem;
    }
    
    .form-input {
        padding: 0.625rem 0.875rem;
    }
    
    .submit-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .main {
        padding: 1rem 0;
    }
    
    .auth-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .auth-header {
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .form-input {
        -webkit-font-smoothing: antialiased;
    }
}
.main{
    zoom: 0.8!important;
}



   /* Try Now Button Styles */
   .try-now-section {
    text-align: center;
    margin: 1.5rem 0;
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: var(--gradient-surface);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.try-now-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 8px rgba(0, 112, 243, 0.2);
}

.try-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 243, 0.1), transparent);
    transition: left 0.5s;
}

.try-now-btn:hover::before {
    left: 100%;
}

.try-now-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.try-now-btn:active {
    transform: translateY(0);
}

.try-now-info {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.4;
}

/* Demo Site Button Styles */
.demo-site-section {
    margin-top: 1.5rem;
}

.demo-site-btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.demo-site-btn i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.demo-site-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 243, 0.05), transparent);
    transition: left 0.5s;
}

.demo-site-btn:hover::before {
    left: 100%;
}

.demo-site-btn:hover {
    background: var(--surface-hover);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.demo-site-btn:active {
    transform: translateY(0);
}

.demo-site-info {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.8;
    line-height: 1.3;
    text-align: center;
}

















