/* Public Landing Page Styles - No Authentication Required */

body, html {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.landing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.landing-logo {
    color: #4a5568;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.landing-title {
    color: #2d3748;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.landing-subtitle {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-login {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
    text-decoration: none;
    color: white;
}

.security-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 768px) {
    .landing-container {
        padding: 1rem;
    }

    .landing-card {
        padding: 2rem 1.5rem;
    }

    .landing-title {
        font-size: 1.75rem;
    }

    .landing-subtitle {
        font-size: 1rem;
    }

    .btn-login {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body, html {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    }

    .landing-card {
        background: #1a202c;
        border: 1px solid #4a5568;
    }

    .landing-logo {
        color: #a0aec0;
    }

    .landing-title {
        color: #f7fafc;
    }

    .landing-subtitle {
        color: #cbd5e0;
    }

    .security-note {
        background: #2d3748;
        color: #a0aec0;
        border: 1px solid #4a5568;
    }
}