:root {
    --bg: #0d0f11;
    --surface: #141618;
    --border: #2a2e33;
    --accent: #7c5cfc;
    --accent2: #a07cff;
    --danger: #e04040;
    --muted: #6b7280;
    --mono: 'IBM Plex Mono', monospace;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg);
    font-family: system-ui, -apple-system, sans-serif;
    color: #e8eaed;
}

.login-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 48px 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #e8eaed;
}

.btn-discord {
    background-color: #5865F2;
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    text-decoration: none;
}

.btn-discord:hover {
    background-color: #4752C4;
}

.error {
    color: var(--danger);
    font-size: 14px;
    margin-top: 24px;
    min-height: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.logo-container img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--mono);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent2);
}