/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Login container */
.login-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 600px;
}

/* Login card */
.login-card {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-image {
    height: 50px;
    width: auto;
}

/* Login content */
.login-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 16px;
    color: #718096;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Error message */
.error-message {
    background: #fed7d7;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #feb2b2;
    font-size: 14px;
}

/* Google signin button */
.google-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 12px;
    margin-bottom: 40px;
}

.google-signin-btn:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

/* Features preview */
.features-preview {
    margin-top: 20px;
}

.features-preview h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #4a5568;
    gap: 12px;
}

.feature-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

/* Login visual */
.login-visual {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-content {
    text-align: center;
    max-width: 400px;
}

.visual-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.visual-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Preview mockup */
.preview-mockup {
    margin-top: 20px;
}

.mockup-image {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Trust indicators */
.trust-indicators {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e2e8f0;
    padding: 20px 0;
}

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

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a5568;
}

.trust-icon {
    font-size: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        margin: 20px;
        min-height: auto;
    }
    
    .login-card,
    .login-visual {
        padding: 40px 30px;
    }
    
    .login-content h1 {
        font-size: 28px;
    }
    
    .visual-content h2 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .trust-indicators {
        position: relative;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .login-card,
    .login-visual {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}