:root {
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg: #f3f4f6;
}

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

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.wrapper {
    max-width: 600px;
    width: 100%;
    text-align: left;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

h1 {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.small {
    font-size: 1rem;
    color: #9ca3af;
    margin-top: 10px;
}