@import url('https://fonts.bunny.net/css?family=instrument-sans:400,500,600,700');

:root {
    /* Colors from app.css (Primary: oklch(0.205 0 0) -> roughly very dark grey/black) */
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    
    --background: #ffffff;
    --foreground: #252525;
    
    --card: #ffffff;
    --card-foreground: #252525;
    
    --primary: #343434; /* Approximate from oklch(0.205 0 0) - converted to hex for simplicity in static file */
    --primary-foreground: #fbfbfb;
    
    --muted: #f7f7f7;
    --muted-foreground: #737373;
    
    --border: #ebebeb;
    
    --radius: 0.625rem;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #252525;
        --foreground: #fbfbfb;
        
        --card: #252525;
        --card-foreground: #fbfbfb;
        
        --primary: #fbfbfb;
        --primary-foreground: #343434;
        
        --muted: #454545;
        --muted-foreground: #a3a3a3;
        
        --border: #454545;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: background-color 0.3s, color 0.3s;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    width: 100%;
}

.logo-wrapper {
    margin-bottom: 2.5rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background-color: var(--muted);
    padding: 1rem;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    max-width: 32rem;
}

.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    border-top: 1px solid var(--border);
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}
