.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 24px;
}

.discord-btn {
    background-color: #5865F2;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s;
}

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

.discord-btn svg {
    width: 24px;
    height: 24px;
}

.auth-logo-img {
    height: 60px;
    margin-bottom: 45px;
    margin-top: 24px;
}

.auth-footer {
    font-size: 14px;
    color: var(--4win-text-muted);
    margin-top: 20px;
    text-align: center;
}